X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile;h=d8037660c5134628ee43e0e4f590ef2312d82e10;hb=7b7cb978ab032edb192effcd9eac443d8800b565;hp=7e04bf7ce903855a5c059b79d09243c73b483cd0;hpb=36eef8ab7ec7c90e97f2371d7ca8c80d52fd3e27;p=onak.git diff --git a/Makefile b/Makefile index 7e04bf7..d803766 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ +# # Makefile for onak. +# +# $Id: Makefile,v 1.15 2003/06/04 20:57:06 noodles Exp $ +# CC = gcc LINK = gcc @@ -12,13 +16,13 @@ LIBS = -L/usr/local/lib -ldb3 PROGS = add lookup gpgwww onak CORE_OBJS = armor.o charfuncs.o decodekey.o getcgi.o hash.o keydb_$(DBTYPE).o \ - keyid.o keyindex.o ll.o mem.o onak-conf.o parsekey.o sha.o md5.o + keyid.o keyindex.o ll.o mem.o onak-conf.o parsekey.o sha.o md5.o log.o OBJS = merge.o stats.o sendsync.o $(CORE_OBJS) 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 + 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) @@ -43,9 +47,13 @@ onak: onak.o merge.o $(CORE_OBJS) clean: rm -f $(PROGS) $(OBJS) Makefile.bak testparse maxpath *.core core \ - gpgwww.o add.o lookup.o main.o maxpath.o onak.o + 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