]> granicus.if.org Git - apache/blob - server/Makefile.in
9f9fa13601ffb85e44ac7891f6504641c759d411
[apache] / server / Makefile.in
1
2 CLEAN_TARGETS = gen_test_char test_char.h \
3         ApacheCoreOS2.def httpd.exp export_files \
4         exports.c export_vars.h
5
6 SUBDIRS = mpm
7
8 LTLIBRARY_NAME    = libmain.la
9 LTLIBRARY_SOURCES = \
10         config.c log.c main.c vhost.c util.c \
11         util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \
12         connection.c listen.c util_mutex.c mpm_common.c mpm_unix.c \
13         util_charset.c util_cookies.c util_debug.c util_xml.c \
14         util_filter.c util_pcre.c util_regex.c exports.c \
15         scoreboard.c error_bucket.c protocol.c core.c request.c provider.c \
16         eoc_bucket.c eor_bucket.c core_filters.c \
17         util_expr_parse.c util_expr_scan.c util_expr_eval.c
18 LTLIBRARY_DEPENDENCIES = test_char.h
19
20 TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp
21
22 include $(top_builddir)/build/rules.mk
23 include $(top_srcdir)/build/library.mk
24
25 gen_test_char_OBJECTS = gen_test_char.lo
26 gen_test_char: $(gen_test_char_OBJECTS)
27         $(LINK) $(EXTRA_LDFLAGS) $(gen_test_char_OBJECTS) $(EXTRA_LIBS)
28
29 test_char.h: gen_test_char
30         ./gen_test_char > test_char.h
31
32 util.lo: test_char.h
33
34 EXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR)
35 EXPORT_DIRS_APR = $(APR_INCLUDEDIR) $(APU_INCLUDEDIR)
36
37 # If export_files is a dependency here, but we remove it during this stage,
38 # when exports.c is generated, make will not detect that export_files is no
39 # longer here and deadlock.  So, export_files can't be a dependency of
40 # delete-exports.
41 delete-exports:
42         @if test -f exports.c; then \
43             if test -f export_files; then \
44                 files=`cat export_files`; \
45                 headers="`find $$files -newer exports.c`"; \
46                 if test -n "$$headers"; then \
47                    echo Found newer headers. Will rebuild exports.c.; \
48                    echo rm -f exports.c export_files; \
49                    rm -f exports.c export_files; \
50                 fi; \
51             else \
52                 rm -f exports.c; \
53             fi; \
54         fi
55
56 export_files:
57         tmp=export_files_unsorted.txt; \
58         rm -f $$tmp && touch $$tmp; \
59         for dir in $(EXPORT_DIRS); do \
60             ls $$dir/*.h >> $$tmp; \
61         done; \
62         for dir in $(EXPORT_DIRS_APR); do \
63             (ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \
64         done; \
65         sort -u $$tmp > $@; \
66         rm -f $$tmp
67
68 exports.c: export_files
69         $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@
70
71 export_vars.h: export_files
72         $(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $?` > $@
73
74 # Rule to make def file for OS/2 core dll
75 ApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_header.def
76         cat $(top_srcdir)/os/$(OS_DIR)/core_header.def > $@
77         $(CPP) $< $(ALL_CPPFLAGS) $(ALL_INCLUDES) | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/  "\1"/' >> $@
78         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep "^[a-z]" | sed -e 's/^\(.*\)$$/  "\1"/' >> $@
79
80 # Rule to make exp file for AIX DSOs
81 httpd.exp: exports.c export_vars.h
82         @echo "#! ." > $@
83         @echo "* This file was AUTOGENERATED at build time." >> $@
84         @echo "* Please do not edit by hand." >> $@
85         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@
86         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@
87
88
89 #   developer stuff
90 #   (we really don't expect end users to use these targets!)
91 #
92 util_expr_scan.c util_expr_parse.c util_expr_parse.h: util_expr_scan.l util_expr_parse.y
93         bison -pap_expr_yy --defines=$(builddir)/util_expr_parse.h \
94             -o $(builddir)/util_expr_parse.c $(srcdir)/util_expr_parse.y
95         flex -Pap_expr_yy -o $(builddir)/util_expr_scan.c $(srcdir)/util_expr_scan.l
96         set -e ; \
97         for f in util_expr_scan.c util_expr_parse.c util_expr_parse.h ; do \
98                 sed -e "s|\"$(builddir)/|\"|g" < $(builddir)/$$f > \
99                         $(builddir)/$$f.$$$$ && \
100                 mv $(builddir)/$$f.$$$$ $(builddir)/$$f ; \
101         done
102         # work around flex bug
103         # http://sourceforge.net/tracker/?func=detail&aid=3029024&group_id=97492&atid=618177
104         perl -0777 -p -i -e 's,\n(void|int) ap_expr_yy[gs]et_column[^\n]+\)\n.*?\n\},,gs' \
105                 $(builddir)/util_expr_scan.c