projects
/
onak.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cscvs to tla changeset 78
[onak.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index fb2eab480a11fd91059162b9d9f5fa48199174da..d8037660c5134628ee43e0e4f590ef2312d82e10 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-1,4
+1,8
@@
+#
# Makefile for onak.
# Makefile for onak.
+#
+# $Id: Makefile,v 1.15 2003/06/04 20:57:06 noodles Exp $
+#
CC = gcc
LINK = gcc
CC = gcc
LINK = gcc
@@
-18,7
+22,7
@@
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
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: $(PROGS) testparse maxpath sixdegrees
+all:
.depend
$(PROGS) testparse maxpath sixdegrees
testparse: main.o $(OBJS)
$(LINK) -o testparse main.o $(OBJS) $(LIBS)
testparse: main.o $(OBJS)
$(LINK) -o testparse main.o $(OBJS) $(LIBS)
@@
-46,7
+50,10
@@
clean:
gpgwww.o add.o lookup.o main.o maxpath.o onak.o sixdegrees \
sixdegrees.o
gpgwww.o add.o lookup.o main.o maxpath.o onak.o sixdegrees \
sixdegrees.o
-depend:
- makedepend $(SRCS)
+.depend: $(SRCS)
+ rm .depend
+ makedepend -f- -- $(CFLAGS) -- $(SRCS) > .depend
-# DO NOT DELETE
+include .depend
+
+.PHONY: all clean