.SUFFIXES: .c .o 

GCC = gcc

INCLUDE = -I../include/shared -I../configure
CFLAGS = -g -c -Wall $(INCLUDE)
COMPILE.c=$(GCC) $(CFLAGS) $(INCLUDE)

SRCS = hash.c functions.c

ALL:  hash.o functions.o

.c.o:
	$(COMPILE.c) $<

clean: FORCE
	$(RM) *.o 

FORCE:

depend:
	makedepend $(CFLAGS) $(SRCS) 
# DO NOT DELETE THIS LINE -- mkdep uses it.	

