Makefile.in revision 05b7ad99e5d197b06c761fef0e06a44e353cbc54
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndDEPTH = .
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndtop_srcdir = @top_srcdir@
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndsrcdir = @srcdir@
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndVPATH = @srcdir@
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndSUBDIRS = ap lib main modules os support $(REGEX_DIR)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndPROGRAM_NAME = $(progname)
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndPROGRAM_SOURCES = modules.c buildmark.c
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowenPROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowenPROGRAM_DEPENDENCIES = \
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen $(BUILTIN_LIBS) \
d29d9ab4614ff992b0e8de6e2b88d52b6f1f153erbowen $(MPM_LIB) \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd main/libmain.la \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd $(OS_DIR)/libos.la \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd ap/libap.la \
3f08db06526d6901aa08c110b5bc7dde6bc39905nd lib/apr/$(LIBPRE)apr.a \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd $(REGEX_LIB)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndPROGRAMS = $(PROGRAM_NAME)
3f08db06526d6901aa08c110b5bc7dde6bc39905ndtargets = $(PROGRAMS)
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndphony_targets = buildmark.c
ad74a0524a06bfe11b7de9e3b4ce7233ab3bd3f7ndinstall_targets = install-conf install-htdocs install-icons install-other \
ad74a0524a06bfe11b7de9e3b4ce7233ab3bd3f7nd install-cgi install-include
ecc5150d35c0dc5ee5119c2717e6660fa331abbftakashiDISTCLEANFILES = apaci include/config_auto.h modules.c
bc9d4698fce0238d2f6f2682e99423ebb1149976rbowen
ad74a0524a06bfe11b7de9e3b4ce7233ab3bd3f7ndinclude $(top_srcdir)/build/rules.mk
63f06dce77bb2d9b1c5aa5deeb47a1069987fd1endinclude $(top_srcdir)/build/program.mk
d474d8ef01ec5c2a09341cd148851ed383c3287crbowen
d474d8ef01ec5c2a09341cd148851ed383c3287crboweninstall-conf:
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @echo Installing configuration files
4b575a6b6704b516f22d65a3ad35696d7b9ba372rpluem @test -d $(sysconfdir) || $(mkinstalldirs) $(sysconfdir)
4b575a6b6704b516f22d65a3ad35696d7b9ba372rpluem @cd $(srcdir)/../conf; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd for i in mime.types magic; do \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd $(INSTALL_DATA) $$i $(sysconfdir); \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd done; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd for i in *-dist; do \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd sed -e 's#@@ServerRoot@@#$(prefix)#g' \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd < $$i > $(sysconfdir)/$$i; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd chmod 0644 $(sysconfdir)/$$i; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd file=`echo $$i|sed s/-dist//`; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd if [ "$$file" = "httpd.conf" ]; then \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd fi; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd fi; \
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd done
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndinstall-htdocs:
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @echo Installing HTML documents
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @test -d $(htdocsdir) || $(mkinstalldirs) $(htdocsdir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @cp -rp $(srcdir)/../htdocs/* $(htdocsdir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
80eed96ee3d8cfa0b66d9fb1cfe63fd83254d38bnilguninstall-icons:
80eed96ee3d8cfa0b66d9fb1cfe63fd83254d38bnilgun @echo Installing icons
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @test -d $(iconsdir) || $(mkinstalldirs) $(iconsdir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @cp -rp $(srcdir)/../icons/* $(iconsdir)
316f02e3836836c82e19019ff23f90a7ebc65289nilgun
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndinstall-cgi:
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @echo Installing CGIs
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @test -d $(cgidir) || $(mkinstalldirs) $(cgidir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @cp -rp $(srcdir)/../cgi-bin/* $(cgidir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
0853e1e2522c1ac17f697221758bcbd4781a7ff9ndinstall-other:
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @test -d $(logdir) || $(mkinstalldirs) $(logdir)
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd
b43f840409794ed298e8634f6284741f193b6c4ftakashiinstall-include:
22d5d84393d960a2027f472036f3fee15d7dbce9nd @echo Installing header files
22d5d84393d960a2027f472036f3fee15d7dbce9nd @test -d $(includedir) || $(mkinstalldirs) $(includedir)
22d5d84393d960a2027f472036f3fee15d7dbce9nd @test -d $(includedir)/xml || $(mkinstalldirs) $(includedir)/xml
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @test -d $(includedir)/apr || $(mkinstalldirs) $(includedir)/apr
a78048ccbdb6256da15e6b0e7e95355e480c2301nd @cp include/*.h $(srcdir)/include/*.h $(includedir)
a78048ccbdb6256da15e6b0e7e95355e480c2301nd @cp $(srcdir)/lib/expat-lite/*.h $(includedir)/xml
50c04f297d76a57ead2fa6b73845f7563b1fc788sf @cp lib/apr/include/*.h $(srcdir)/lib/apr/include/*.h $(includedir)/apr
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd @chmod 644 $(includedir)/*.h $(includedir)/xml/*.h $(includedir)/apr/*.h
0853e1e2522c1ac17f697221758bcbd4781a7ff9nd