X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/6e5b15819a125240c19a44db59894a04eeee7b41..1a67fe6c4c85e0e9953a0c9d8a32ba1518e074b5:/Makefile?ds=sidebyside

diff --git a/Makefile b/Makefile
index 9855c7c..35f1674 100644
--- a/Makefile
+++ b/Makefile
@@ -11,14 +11,14 @@ 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
+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
 OBJS = merge.o md5.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
 
-all: $(PROGS) testparse maxpath
+all: $(PROGS) testparse maxpath sixdegrees
 
 testparse: main.o $(OBJS)
 	$(LINK) -o testparse main.o $(OBJS) $(LIBS)
@@ -26,6 +26,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)