X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile;h=791708866050adc49e6f8088431238bafb6502c2;hb=cbd86744c2245a16a75c230733db23960cf19631;hp=018eb04972052bfb1d400d7c9ffa9c74f6374356;hpb=3b8600a153359953627781ce83f8c57242316096;p=onak.git diff --git a/Makefile b/Makefile index 018eb04..7917088 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,13 @@ +# # Makefile for onak. +# +# $Id: Makefile,v 1.16 2003/06/06 14:02:39 noodles Exp $ +# CC = gcc LINK = gcc CFLAGS += -Wall -pedantic -g -I/usr/local/include +# Uncomment to enable profiling. #LDFLAGS += -pg # Can be "pg" for Postgresql, "file" for flat files or "db2" for pksd db2 style. DBTYPE = db3 @@ -12,13 +17,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) @@ -46,7 +51,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