summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorlaforge <laforge>2000-11-20 19:36:25 +0000
committerlaforge <laforge>2000-11-20 19:36:25 +0000
commit96ca143575807314342bf50528bf8f5acb8dd0ef (patch)
tree9e5fd376e56c924f1bc9d19e636accc91634b3b9 /Makefile.in
parent7181f929279bea55c8554a86b5cdec9d0c09a7cc (diff)
mysql autoconf detection
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 54a8416..05570e7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -5,9 +5,10 @@ CFLAGS+=-I@top_srcdir@/libipulog/include -I@top_srcdir@/conffile
SUBDIRS=conffile libipulog extensions doc
-prefix=@prefix@
-exec_prefix=@exec_prefix@
-sysconfdir=@sysconfdir@
+ifeq (x@MYSQLINCLUDES@,x)
+else
+SUBDIRS+=mysql
+endif
# Normally You should not need to change anything below
@@ -29,8 +30,7 @@ distclean: clean
rm -f Makefile config.cache config.log config.status Rules.make
install: all
- @INSTALL@ -m 755 -d @libdir@/ulogd
- @INSTALL@ -m 644 extensions/*.so @libdir@/ulogd
+ @for d in $(SUBDIRS); do if ! make -C $$d $@; then exit 1; fi; done
@INSTALL@ -m 755 ulogd @sbindir@/ulogd
@INSTALL@ -m 600 ulogd.conf @sysconfdir@/ulogd.conf