X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/81e4d3b012b8c17ab17215a2f904a5742e41886d..6f0d21388eeeb33893728d92dfc0f3a3a6d6aafe:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 6cbcc49..fe7cfd4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,18 +1,16 @@ # # Makefile for onak. # -# $Id: Makefile,v 1.23 2004/05/31 22:04:50 noodles Exp $ -# CC = @CC@ -CFLAGS += @CFLAGS@ -Wall -pedantic -g +CFLAGS += @CFLAGS@ -Wall -pedantic # Uncomment to enable profiling. -#LDFLAGS += -pg +LDFLAGS += @LDFLAGS@ # Can be "pg" for Postgresql, "file" for flat files or "db2" for pksd db2 style. -DBTYPE = db3 -# If using DBTYPE of "file" then comment the following line out. -#LIBS = -L/usr/local/lib -lpq -LIBS = -L/usr/local/lib -ldb3 +DBTYPE = @DBTYPE@ +# +LIBS = @LIBS@ +prefix ?= @prefix@ PROGS = add lookup gpgwww onak splitkeys CORE_OBJS = armor.o charfuncs.o decodekey.o getcgi.o hash.o keydb_$(DBTYPE).o \ @@ -50,16 +48,20 @@ add: add.o cleankey.o merge.o sendsync.o $(CORE_OBJS) $(CORE_OBJS) $(LIBS) onak: onak.o merge.o cleankey.o $(CORE_OBJS) - $(CC) $(LDFLAGS) $(LDFLAGS) -o onak onak.o merge.o cleankey.o \ + $(CC) $(LDFLAGS) -o onak onak.o merge.o cleankey.o \ $(CORE_OBJS) $(LIBS) +onak-conf.o: onak-conf.c onak-conf.h + $(CC) $(CFLAGS) -DCONFIGFILE=\"@sysconfdir@/onak.conf\" -c onak-conf.c + clean: - rm -f $(PROGS) $(OBJS) Makefile.bak testparse maxpath *.core core \ + $(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 -distclean: - rm -f Makefile config.h .depend +distclean: clean + $(RM) -f Makefile .depend config.{log,status,h} + $(RM) -r autom4te.cache .depend: $(SRCS) rm -f .depend