# @configure_input@ # Modify these top variables. SUBDIRS = docs contrib src utility EXTRA_DIST = AUTHORS INSTALL TODO LICENSE CHANGELOG \ build-apache13.bat build-apache2.bat \ #Don't modify anything below here top_srcdir = @top_srcdir@ srcdir = @abs_srcdir@ builddir = @abs_builddir@ STD_DIST = install-sh \ config.sub \ config.guess \ aclocal.m4 \ Makefile.in \ configure.ac \ configure \ stamp-h.in \ include/config.h.in DISTFILES = $(STD_DIST) $(EXTRA_DIST) all: all-subdirs all-subdirs install-subdirs activate-subdirs clean-subdirs distclean-subdirs: @otarget=`echo $@|sed s/-subdirs//`; \ list=' $(SUBDIRS)'; \ for i in $$list; do \ if test -d "$$i"; then \ target="$$otarget"; \ echo "Making $$target in $$i"; \ if test "$$i" = "."; then \ made_local=yes; \ target="local-$$target"; \ fi; \ (cd $$i && $(MAKE) $$target) || exit 1; \ fi; \ done; TODO: TODO.in @./m4/scripts/gen_todo.pl install: install-subdirs echo "*************************************************************************"; \ echo "*** The mod_log_sql modules have been installed."; \ echo "*** Please edit your Apache configuration files and"; \ echo "*** add the appropriate LoadModule directives per the documentation"; \ echo "*** in docs/manual.html"; \ echo "*** If you have previously used 1.18 or lower then you must change"; \ echo "*** >LoadModule sql_log_module modules/mod_log_sql.so"; \ echo "*** to"; \ echo "*** >LoadModule log_sql_module modules/mod_log_sql.so"; \ echo "*** in your httpd.conf as the internal name of the module has changed."; \ echo "*** "; \ echo "*** Also read the documentation about using SSL support and new "; \ echo "*** configuration directives."; \ echo "*************************************************************************"; activate: activate-subdirs clean: clean-subdirs distclean: clean distclean-subdirs $(RM) config.status config.log include/config.h include/config.h.in \ configure stamp-h stamp-h.in Makefile aclocal.m4 $(RM) -r autom4te-2.53.cache DESTDIR = @PACKAGE_NAME@-@PACKAGE_VERSION@ DESTTGZ = $(DESTDIR).tar.gz dist: @rm -rf $(DESTDIR); \ list=' $(SUBDIRS)'; \ for i in $$list; do \ if test -d "$$i"; then \ target=local-dist; \ echo "Making $$target in $$i"; \ if test "$$i" = "."; then \ made_local=yes; \ target="local-dist"; \ fi; \ NEWDESTDIR=$(builddir)/$(DESTDIR)/$$i; \ echo $(NEWDESTDIR); \ (cd $$i && $(MAKE) DESTDIR=$(builddir)/$(DESTDIR)/$$i $$target) || exit 1; \ fi; \ done; \ if test "$$made_local" != "yes"; then \ $(MAKE) "local-dist" || exit 1; \ fi; \ tar -zcf $(DESTTGZ) $(DESTDIR); \ rm -rf $(DESTDIR); \ local-dist: $(DISTFILES) mkdir -p $(DESTDIR) cp -dp --parents $(DISTFILES) $(DESTDIR) .PHONY: include all-subdirs activate-subdirs install-subdirs \ clean-subdirs distclean-subdirs dist # Regenerate makefiles # autoheader might not change config.h.in, so touch a stamp file. $(srcdir)/config.h.in: stamp-h.in $(srcdir)/stamp-h.in: configure.ac aclocal.m4 cd $(srcdir) && autoheader-2.53 echo timestamp > $(srcdir)/stamp-h.in config.h: stamp-h stamp-h: config.h.in config.status ./config.status $(srcdir)/configure: configure.ac aclocal.m4 cd $(srcdir) && autoconf Makefile: Makefile.in config.status ./config.status config.status: configure ./config.status --recheck