X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/c444d104cdc0250cd23b5013fee3e56000e23ae5..28d25177e72f84408c99072fbe6cf05b4fc556fb:/Makefile.in diff --git a/Makefile.in b/Makefile.in index 4d551bc..546f3a8 100644 --- a/Makefile.in +++ b/Makefile.in @@ -48,6 +48,23 @@ OBJS = stats.o cleankey.o $(CORE_OBJS) $(KEYDB_OBJ) all: .depend $(PROGS) testparse maxpath sixdegrees splitkeys onak.conf \ $(BACKENDS) +install: $(PROGS) onak.conf $(BACKENDS) + install -d $(DESTDIR)/@bindir@ + install -d $(DESTDIR)/@libdir@/onak/backends + install -d $(DESTDIR)/@localstatedir@/lib/onak + install -d $(DESTDIR)/@mandir@/man1 + install -d $(DESTDIR)/@mandir@/man8 + install -d $(DESTDIR)/@sysconfdir@ + install onak-mail.pl $(DESTDIR)/@libdir@/onak + install onak splitkeys $(DESTDIR)/@bindir@ + install onak.1 splitkeys.1 $(DESTDIR)/@mandir@/man1 + install keyd.8 onak-mail.pl.8 $(DESTDIR)/@mandir@/man8 +ifeq (x@DBTYPE@, xdynamic) + install $(BACKENDS) $(DESTDIR)/@libdir@/onak/backends + install -d $(DESTDIR)/@sbindir@ + install keyd $(DESTDIR)/@sbindir@ +endif + keyd: keyd.o $(CORE_OBJS) keydb_$(DBTYPE).o $(CC) $(LDFLAGS) $(PROGS_LDFLAGS_EXTRA) \ -o keyd keyd.o $(CORE_OBJS) keydb_$(DBTYPE).o $(LIBS) @@ -61,9 +78,6 @@ libkeydb_pg.so: keydb_pg.o libkeydb_%.so: keydb_%.o $(CC) -shared -o $@ $< $(CORE_OBJS) -keydb_%.o: keydb_%.c - $(CC) -c -fPIC $(LDFLAGS) -o $@ $< - splitkeys: splitkeys.o $(CORE_OBJS) $(KEYDB_OBJ) $(CC) $(LDFLAGS) -o splitkeys splitkeys.o $(CORE_OBJS) $(KEYDB_OBJ) \ $(LIBS) $(PROGS_LDFLAGS_EXTRA) @@ -101,7 +115,8 @@ onak: onak.o cleankey.o $(CORE_OBJS) $(KEYDB_OBJ) $(CORE_OBJS) $(KEYDB_OBJ) $(LIBS) $(PROGS_LDFLAGS_EXTRA) onak-conf.o: onak-conf.c onak-conf.h - $(CC) $(CFLAGS) -DCONFIGFILE=\"@sysconfdir@/onak.conf\" -c onak-conf.c + $(CC) $(CFLAGS) -DCONFIGFILE=\"@sysconfdir@/onak.conf\" \ + -DDBFUNCS=keydb_@DBTYPE@_funcs -c onak-conf.c onak-mail.pl: onak-mail.pl.in sed 's:@CONFIG@:@sysconfdir@/onak.conf:g' < onak-mail.pl.in > onak-mail.pl @@ -123,7 +138,7 @@ ifeq (x@KEYD@, xyes) endif distclean: clean - $(RM) -f Makefile .depend config.{log,status,h} + $(RM) -f Makefile .depend config.log config.status config.h $(RM) -r autom4te.cache .depend: $(SRCS)