# -*-Makefile-*-
# access to the X resource manager for Sather
# (c) 1995/01/16 - 1995/01/16 by Erik Schnetter

CC=gcc
CFLAGS=-g -O2 -I /u1/cs4cd3/cs4cd3an/Sather
RANLIB=ranlib

TARGET=xrmlib.a
OBJECTS=dummy.o

all::	$(TARGET)($(OBJECTS))

all::
	$(RANLIB) $(TARGET)

clean:
	$(RM) $(OBJECTS) $(TARGET)
