SRCS = Hashtable.c Properties.c String.c

OBJS = $(SRCS:.c=.o)

LDFLAGS= 
COFLAGS=

LIB=util.o

all: $(LIB)

$(LIB): $(OBJS)
	ar -rc $@ $(OBJS)

clean: ; rm -f *~ .*~ \#* *.o a.out core $(LIB)

depend: $(SRCS) ; makedepend $(SRCS)

Hashtable.o: Hashtable.c Hashtable.h General.h Boolean.h String.h
Properties.o: Properties.c String.h General.h Boolean.h Hashtable.h \
 Properties.h
String.o: String.c String.h General.h Boolean.h
