From 8e402a211ee3b1225481a6ff8efaa7c3d3a65272 Mon Sep 17 00:00:00 2001 From: Jonathan McDowell Date: Mon, 31 May 2004 23:47:35 +0000 Subject: [PATCH] cscvs to tla changeset 70 Author: noodles Date: 2003/04/19 23:07:49 Move dependancy list to a separate file. --- Makefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index fb2eab4..5d19995 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ SRCS = armor.c parsekey.c merge.c keyid.c md5.c sha.c main.c getcgi.c stats.c \ 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) @@ -46,7 +46,10 @@ clean: 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 -- 2.39.2