X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile;h=cd9de0f509a8f2a22cd88e9f0f63073889e2269d;hb=4843efc642ddcfe524bb6ba37b01154e57489ff7;hp=d8037660c5134628ee43e0e4f590ef2312d82e10;hpb=0f4971d043c38bae1bfb95201622a1405110f899;p=onak.git diff --git a/Makefile b/Makefile index d803766..cd9de0f 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,13 @@ # # Makefile for onak. # -# $Id: Makefile,v 1.15 2003/06/04 20:57:06 noodles Exp $ +# $Id: Makefile,v 1.17 2003/09/30 21:16:14 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 @@ -22,7 +23,10 @@ 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: .depend $(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)