X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile;h=fb2eab480a11fd91059162b9d9f5fa48199174da;hb=2edb917ed0be24b4a525bef5aa346389afbd1be3;hp=dc8d5cedd57e0de542e5cafd1b98f317ec793922;hpb=5913c95f2c7abf4c3cb06e27d384d80fb4c83547;p=onak.git diff --git a/Makefile b/Makefile index dc8d5ce..fb2eab4 100644 --- a/Makefile +++ b/Makefile @@ -12,13 +12,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 -OBJS = merge.o md5.o stats.o sendsync.o $(CORE_OBJS) + 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: $(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) @@ -40,7 +43,8 @@ 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: makedepend $(SRCS)