X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=Makefile.in;h=334ec2923b6bb7d740af3db26115f66089d30d3d;hb=bdada0eacc11f6cfbf3256556d86282a0124ab26;hp=5cb723f45660165a42386f9d7f60383f29a41f8e;hpb=abd73876aa3545e3bfcffd44680538a3c10bb84c;p=onak.git diff --git a/Makefile.in b/Makefile.in index 5cb723f..334ec29 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,7 +10,10 @@ LDFLAGS += @LDFLAGS@ DBTYPE = @DBTYPE@ # LIBS = @LIBS@ +#MAKEDEPEND = makedepend -f- -- +MAKEDEPEND = $(CC) -MM prefix ?= @prefix@ +exec_prefix ?= @exec_prefix@ PROGS = add lookup gpgwww onak splitkeys onak-mail.pl stripkey CORE_OBJS = armor.o charfuncs.o decodekey.o getcgi.o hash.o keydb_$(DBTYPE).o \ @@ -22,7 +25,7 @@ SRCS = armor.c parsekey.c merge.c keyid.c md5.c sha1.c main.c getcgi.c mem.c \ gpgwww.c onak-conf.c charfuncs.c sendsync.c log.c photoid.c \ wordlist.c cleankey.c cleanup.c -all: .depend $(PROGS) testparse maxpath sixdegrees splitkeys +all: .depend $(PROGS) testparse maxpath sixdegrees splitkeys onak.conf splitkeys: splitkeys.o $(CORE_OBJS) $(CC) $(LDFLAGS) -o splitkeys splitkeys.o $(CORE_OBJS) $(LIBS) @@ -61,10 +64,15 @@ onak-mail.pl: onak-mail.pl.in sed 's:@CONFIG@:@sysconfdir@/onak.conf:g' < onak-mail.pl.in > onak-mail.pl chmod +x onak-mail.pl +onak.conf: onak.conf.in + sed -e 's:@BINDIR@:@bindir@:g' \ + -e 's:@STATEDIR@:@localstatedir@:g' \ + < onak.conf.in > onak.conf + clean: $(RM) -f $(PROGS) $(OBJS) Makefile.bak testparse maxpath *.core core \ gpgwww.o add.o lookup.o main.o maxpath.o onak.o sixdegrees \ - sixdegrees.o splitkeys.o stripkey.o + sixdegrees.o splitkeys.o stripkey.o onak.conf distclean: clean $(RM) -f Makefile .depend config.{log,status,h} @@ -72,7 +80,7 @@ distclean: clean .depend: $(SRCS) rm -f .depend - makedepend -f- -- $(CFLAGS) -- $(SRCS) > .depend + $(MAKEDEPEND) $(CFLAGS) $(SRCS) > .depend include .depend