Author: noodles
Date: 2003/04/19 23:07:49
Move dependancy list to a separate file.
keyindex.c mem.c lookup.c add.c keydb_$(DBTYPE).c ll.c hash.c \
gpgwww.c onak-conf.c charfuncs.c sendsync.c log.c
-all: $(PROGS) testparse maxpath sixdegrees
+all: .depend $(PROGS) testparse maxpath sixdegrees
testparse: main.o $(OBJS)
$(LINK) -o testparse main.o $(OBJS) $(LIBS)
gpgwww.o add.o lookup.o main.o maxpath.o onak.o sixdegrees \
sixdegrees.o
-depend:
- makedepend $(SRCS)
+.depend: $(SRCS)
+ rm .depend
+ makedepend -f- -- $(CFLAGS) -- $(SRCS) > .depend
-# DO NOT DELETE
+include .depend
+
+.PHONY: all clean