]> granicus.if.org Git - apache/blob - Makefile.in
very minor tweaks:
[apache] / Makefile.in
1
2 SUBDIRS = srclib os server modules support
3 CLEAN_SUBDIRS = test
4
5 PROGRAM_NAME         = $(progname)
6 PROGRAM_SOURCES      = modules.c
7 PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(HTTPD_LDFLAGS) \
8                        $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
9 PROGRAM_DEPENDENCIES = \
10   $(BUILTIN_LIBS) \
11   $(MPM_LIB) \
12   server/libmain.la \
13   os/$(OS_DIR)/libos.la \
14   $(AP_LIBS)
15
16 PROGRAMS        = $(PROGRAM_NAME)
17 TARGETS         = $(PROGRAMS) $(shared_build) $(other_targets)
18 PHONY_TARGETS   = $(srcdir)/buildmark.c
19 INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \
20         install-other install-cgi install-include install-suexec install-man \
21         install-build
22
23 DISTCLEAN_TARGETS  = include/ap_config_auto.h include/ap_config_path.h \
24         modules.c config.cache config.log config.status config_vars.mk
25 EXTRACLEAN_TARGETS = configure include/ap_config_auto.h.in generated_lists
26
27 include $(top_builddir)/build/rules.mk
28 include $(top_srcdir)/build/program.mk
29
30 install-conf:
31         @echo Installing configuration files
32         @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir)
33         @cd $(top_srcdir)/docs/conf; \
34         for i in mime.types magic; do \
35                 $(INSTALL_DATA) $$i $(sysconfdir); \
36         done; \
37         for i in *-std* ssl.conf; do \
38                 [ -f $$i ] || continue; \
39                 ( \
40                         n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \
41                         if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \
42                                 sed -e 's#@@ServerRoot@@#$(prefix)#g' \
43                                         -e 's#@@Port@@#$(PORT)#g' \
44                                         -e '/@@LoadModule@@/d' \
45                                         < $$i; \
46                         else \
47                                 sed -n -e '/@@LoadModule@@/q' \
48                                         -e 's#@@ServerRoot@@#$(prefix)#g' \
49                                         -e 's#@@Port@@#$(PORT)#g' \
50                                         -e 'p' \
51                                         < $$i; \
52                                 for j in $(DSO_MODULES) "^EOL^"; do \
53                                         if test "x$$j" = "xssl"; then \
54                                                 echo "<IfDefine SSL>"; \
55                                         fi; \
56                                         if test $$j != "^EOL^"; then \
57                                                 echo "LoadModule $${j}_module modules/mod_$${j}.so"; \
58                                         fi; \
59                                         if test "x$$j" = "xssl"; then \
60                                                 echo "</IfDefine>"; \
61                                         fi; \
62                                 done; \
63                                 sed -e '1,/@@LoadModule@@/d' \
64                                         -e '/@@LoadModule@@/d' \
65                                         -e 's#@@ServerRoot@@#$(prefix)#g' \
66                                         -e 's#@@Port@@#$(PORT)#g' \
67                                         < $$i; \
68                         fi \
69                 ) > $(sysconfdir)/$$i; \
70                 chmod 0644 $(sysconfdir)/$$i; \
71                 file=`echo $$i|sed s/-std//`; \
72                 if [ "$$file" = "httpd.conf" ]; then \
73                         file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \
74                 fi; \
75                 if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \
76                         $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \
77                 fi; \
78         done
79
80 install-build:
81         @echo Installing build system files 
82         @test -d $(installbuilddir) || $(MKINSTALLDIRS) $(installbuilddir) 
83         @sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \
84             config_vars.mk > $(installbuilddir)/config_vars.mk; \
85         cp build/*.mk $(installbuilddir); \
86         cp srclib/apr/libtool $(installbuilddir); \
87         if test -f srclib/apr/shlibtool; then \
88             cp srclib/apr/shlibtool $(installbuilddir); \
89         fi
90
91 htdocs-srcdir = $(top_srcdir)/docs/docroot
92
93 docs::
94         mkdir -p ./docs/api
95         srclib/apr/build/scandoc.pl -i./build/default.pl -p./docs/api/ ./include/*.h
96
97 dox::
98         doxygen $(top_srcdir)/docs/doxygen.conf
99
100 install-htdocs:
101         @echo Installing HTML documents
102         @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir)
103         @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir))
104         @test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir)
105         @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir))
106         @(cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf {} \;)
107
108 install-error:
109         @echo Installing error documents
110         @test -d $(errordir) || $(MKINSTALLDIRS) $(errordir)
111         @(cd $(top_srcdir)/docs/error && cp -rp * $(errordir))
112         @(cd $(errordir) && find . -name "CVS" -print | xargs rm -rf {} \;)
113
114 install-icons:
115         @echo Installing icons
116         @test -d $(iconsdir) || $(MKINSTALLDIRS) $(iconsdir)
117         @(cd $(top_srcdir)/docs/icons && cp -rp * $(iconsdir))
118         @(cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf {} \;)
119
120 install-cgi:
121         @echo Installing CGIs
122         @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir)
123         @(cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir))
124         @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;)
125
126 install-other:
127         @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir)
128         @for ext in dll x; do \
129                 file=apachecore.$$ext; \
130                 if test -f $$file; then \
131                         cp -p $$file $(bindir); \
132                 fi; \
133         done; \
134         file=httpd.dll; \
135         if test -f $$file; then \
136                 cp -p $$file $(bindir); \
137         fi;
138
139 install-include:
140         @echo Installing header files
141         @test -d $(includedir)     || $(MKINSTALLDIRS) $(includedir)
142         @cp -p include/*.h $(srcdir)/include/*.h $(includedir)
143         @cp -p $(srcdir)/os/$(OS_DIR)/os.h $(includedir)
144         @if test -f $(srcdir)/os/$(OS_DIR)/os-inline.c; then \
145             cp -p $(srcdir)/os/$(OS_DIR)/os-inline.c $(includedir); \
146         fi;
147         @cp -p $(srcdir)/server/mpm/$(MPM_NAME)/*.h $(includedir)
148         @cp -p $(srcdir)/modules/dav/main/mod_dav.h $(includedir)
149         @cp -p $(srcdir)/modules/filters/mod_include.h $(includedir)
150         @cp -p $(srcdir)/modules/generators/mod_cgi.h $(includedir)
151         @cp -p $(srcdir)/modules/http/mod_core.h $(includedir)
152         @cp -p $(srcdir)/modules/proxy/mod_proxy.h $(includedir)
153         @cp -p $(srcdir)/modules/ssl/*.h $(includedir)
154         @cp -p $(srcdir)/srclib/pcre/*.h $(includedir)
155         @cp -p $(srcdir)/srclib/apr/include/*.h $(includedir)
156         @cp -p $(srcdir)/srclib/apr-util/include/*.h $(includedir)
157         @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir)
158         @chmod 644 $(includedir)/*.h
159
160 install-man:
161         @echo Installing man pages
162         @test -d $(mandir)      || $(MKINSTALLDIRS) $(mandir)
163         @test -d $(mandir)/man1 || $(MKINSTALLDIRS) $(mandir)/man1
164         @test -d $(mandir)/man8 || $(MKINSTALLDIRS) $(mandir)/man8
165         @cp -p $(top_srcdir)/docs/man/*.1 $(mandir)/man1
166         @cp -p $(top_srcdir)/docs/man/*.8 $(mandir)/man8
167
168 install-suexec:
169         @if test -f $(builddir)/support/suexec; then \
170             test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \
171             $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(sbindir); \
172             chmod 4755 $(sbindir)/suexec; \
173         fi
174
175 suexec:
176         cd support && make suexec
177
178 include $(top_srcdir)/os/os2/core.mk