cscvs to tla changeset 100
[onak.git] / Makefile
index 9855c7c182e509a79f00d405d2f8866b4753585a..cd9de0f509a8f2a22cd88e9f0f63073889e2269d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,13 @@
+#
 # Makefile for onak.
+#
+# $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
@@ -11,14 +16,17 @@ DBTYPE = db3
 LIBS = -L/usr/local/lib -ldb3
 
 PROGS = add lookup gpgwww onak
-CORE_OBJS = armor.o charfuncs.o getcgi.o hash.o keydb_$(DBTYPE).o keyid.o \
-       keyindex.o ll.o mem.o onak-conf.o parsekey.o sha.o
-OBJS = merge.o md5.o stats.o sendsync.o $(CORE_OBJS)
+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
+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
+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)
@@ -26,6 +34,9 @@ testparse: main.o $(OBJS)
 maxpath: maxpath.o $(OBJS)
        $(LINK) -o maxpath maxpath.o $(OBJS) $(LIBS)
 
+sixdegrees: sixdegrees.o $(OBJS)
+       $(LINK) -o sixdegrees sixdegrees.o $(OBJS) $(LIBS)
+
 gpgwww: gpgwww.o $(OBJS)
        $(LINK) -o gpgwww gpgwww.o $(OBJS) $(LIBS)
 
@@ -40,9 +51,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: $(SRCS)
+       rm .depend
+       makedepend -f- -- $(CFLAGS) -- $(SRCS) > .depend
 
-depend:
-       makedepend $(SRCS)
+include .depend
 
-# DO NOT DELETE
+.PHONY: all clean