Makefile.in revision bc26992c7172dff00bc89fbfb5f0c6e3c4d6a261
eed2a23d9b5986937f1e2b1c120be97744508a72nd
b51bf223f42d43ca6b1b33c95124edcfa5a871a4ndDEPTH = .
9963f91528694fb21e93da8584c31f226c6de97akesstop_srcdir = @top_srcdir@
eed2a23d9b5986937f1e2b1c120be97744508a72ndsrcdir = @srcdir@
eed2a23d9b5986937f1e2b1c120be97744508a72ndVPATH = @srcdir@
031b91a62d25106ae69d4693475c79618dd5e884fielding
031b91a62d25106ae69d4693475c79618dd5e884fieldingSUBDIRS = ap lib main modules os support $(REGEX_DIR)
031b91a62d25106ae69d4693475c79618dd5e884fielding
031b91a62d25106ae69d4693475c79618dd5e884fieldingPROGRAM_NAME = $(progname)
031b91a62d25106ae69d4693475c79618dd5e884fieldingPROGRAM_SOURCES = modules.c buildmark.c
031b91a62d25106ae69d4693475c79618dd5e884fieldingPROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
eed2a23d9b5986937f1e2b1c120be97744508a72ndPROGRAM_DEPENDENCIES = \
eed2a23d9b5986937f1e2b1c120be97744508a72nd $(BUILTIN_LIBS) \
eed2a23d9b5986937f1e2b1c120be97744508a72nd $(MPM_LIB) \
eed2a23d9b5986937f1e2b1c120be97744508a72nd main/libmain.la \
eed2a23d9b5986937f1e2b1c120be97744508a72nd $(OS_DIR)/libos.la \
eed2a23d9b5986937f1e2b1c120be97744508a72nd ap/libap.la \
eed2a23d9b5986937f1e2b1c120be97744508a72nd lib/apr/$(LIBPRE)apr.a \
eed2a23d9b5986937f1e2b1c120be97744508a72nd $(REGEX_LIB)
eed2a23d9b5986937f1e2b1c120be97744508a72nd
eed2a23d9b5986937f1e2b1c120be97744508a72ndPROGRAMS = $(PROGRAM_NAME)
eed2a23d9b5986937f1e2b1c120be97744508a72ndtargets = $(PROGRAMS)
eed2a23d9b5986937f1e2b1c120be97744508a72ndphony_targets = buildmark.c
eed2a23d9b5986937f1e2b1c120be97744508a72ndinstall_targets = install-conf install-htdocs install-icons install-other \
eed2a23d9b5986937f1e2b1c120be97744508a72nd install-cgi install-include install-support
eed2a23d9b5986937f1e2b1c120be97744508a72ndDISTCLEANFILES = include/config_auto.h modules.c aclocal.m4 buildmk.stamp \
54c42060da90b1e584f6af6a349f964d44c6c740nd configure generated_lists include/ap_config_auto.h \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes include/ap_config_auto.h.in include/ap_config_path.h install-sh
54c42060da90b1e584f6af6a349f964d44c6c740nd
54c42060da90b1e584f6af6a349f964d44c6c740ndinclude $(top_srcdir)/build/rules.mk
54c42060da90b1e584f6af6a349f964d44c6c740ndinclude $(top_srcdir)/build/program.mk
54c42060da90b1e584f6af6a349f964d44c6c740nd
54c42060da90b1e584f6af6a349f964d44c6c740ndinstall-conf:
54c42060da90b1e584f6af6a349f964d44c6c740nd @echo Installing configuration files
d4b9d24a20bdf028aa15202f73ac3c0da1626252nd @test -d $(sysconfdir) || $(mkinstalldirs) $(sysconfdir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cd $(srcdir)/../conf; \
0ee353fc9305065b15fb5064c5357f47380c0b6and for i in mime.types magic; do \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes $(INSTALL_DATA) $$i $(sysconfdir); \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes done; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes for i in *-dist; do \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes sed -e 's#@@ServerRoot@@#$(prefix)#g' \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes < $$i > $(sysconfdir)/$$i; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes chmod 0644 $(sysconfdir)/$$i; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes file=`echo $$i|sed s/-dist//`; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes if [ "$$file" = "httpd.conf" ]; then \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes fi; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes fi; \
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes done
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-htdocs:
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @echo Installing HTML documents
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @test -d $(htdocsdir) || $(mkinstalldirs) $(htdocsdir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cp -rp $(srcdir)/../htdocs/* $(htdocsdir)
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-icons:
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @echo Installing icons
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @test -d $(iconsdir) || $(mkinstalldirs) $(iconsdir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cp -rp $(srcdir)/../icons/* $(iconsdir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-cgi:
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @echo Installing CGIs
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @test -d $(cgidir) || $(mkinstalldirs) $(cgidir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cp -rp $(srcdir)/../cgi-bin/* $(cgidir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-support:
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @echo Installing Support Binaries
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @test -d $(bindir) || $(mkinstalldirs) $(bindir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cp -rp $(srcdir)/support/httpd.exp $(bindir)
f5e4573f2a3ca4b7d7d10bfb50950fa7eff27efbnilgun @cp -rp $(srcdir)/support/htpasswd $(bindir)
f5e4573f2a3ca4b7d7d10bfb50950fa7eff27efbnilgun @cp -rp $(srcdir)/support/htdigest $(bindir)
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @cp -rp $(srcdir)/support/rotatelogs $(bindir)
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @cp -rp $(srcdir)/support/logresolve $(bindir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @cp -rp $(srcdir)/support/ab $(bindir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-other:
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @test -d $(logdir) || $(mkinstalldirs) $(logdir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholesinstall-include:
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis @echo Installing header files
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @test -d $(includedir) || $(mkinstalldirs) $(includedir)
61d237f7e3a54089a7514227d663fac296d7d8f0bnicholes @test -d $(includedir)/xml || $(mkinstalldirs) $(includedir)/xml
4930be147adf9e3f6d3ca9313a6524f9bf654b2dnd @test -d $(includedir)/apr || $(mkinstalldirs) $(includedir)/apr
4930be147adf9e3f6d3ca9313a6524f9bf654b2dnd @cp include/*.h $(srcdir)/include/*.h $(includedir)
4930be147adf9e3f6d3ca9313a6524f9bf654b2dnd @cp $(srcdir)/lib/expat-lite/*.h $(includedir)/xml
4930be147adf9e3f6d3ca9313a6524f9bf654b2dnd @cp lib/apr/include/*.h $(srcdir)/lib/apr/include/*.h $(includedir)/apr
4930be147adf9e3f6d3ca9313a6524f9bf654b2dnd @chmod 644 $(includedir)/*.h $(includedir)/xml/*.h $(includedir)/apr/*.h
2253eb4c6e7a037e78c84e13658e23632b46ed9dlgentis