X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile;h=733daf4c59b2ecdbd850fb79d6a824e7ce7ac9dc;hb=46c27e2883a78388c895dc883dbb9b902fc8350d;hp=fb2eab480a11fd91059162b9d9f5fa48199174da;hpb=3b5b9db0bc2dbe93b3b79e722997606c71ecafb9;p=onak.git diff --git a/Makefile b/Makefile index fb2eab4..733daf4 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,33 @@ +# # Makefile for onak. +# +# $Id: Makefile,v 1.20 2004/05/27 03:33:24 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 +DBTYPE = fs # If using DBTYPE of "file" then comment the following line out. #LIBS = -L/usr/local/lib -lpq LIBS = -L/usr/local/lib -ldb3 -PROGS = add lookup gpgwww onak +PROGS = add lookup gpgwww onak splitkeys 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 log.o + keyid.o keyindex.o ll.o mem.o onak-conf.o parsekey.o sha.o md5.o \ + log.o photoid.o wordlist.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 log.c + gpgwww.c onak-conf.c charfuncs.c sendsync.c log.c photoid.c wordlist.o -all: $(PROGS) testparse maxpath sixdegrees +all: .depend $(PROGS) testparse maxpath sixdegrees splitkeys + +splitkeys: splitkeys.o $(CORE_OBJS) + $(LINK) -o splitkeys splitkeys.o $(CORE_OBJS) $(LIBS) testparse: main.o $(OBJS) $(LINK) -o testparse main.o $(OBJS) $(LIBS) @@ -44,9 +53,12 @@ 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 sixdegrees \ - sixdegrees.o + sixdegrees.o splitkeys.o + +.depend: $(SRCS) + rm .depend + makedepend -f- -- $(CFLAGS) -- $(SRCS) > .depend -depend: - makedepend $(SRCS) +include .depend -# DO NOT DELETE +.PHONY: all clean