]> granicus.if.org Git - apache/blob - server/Makefile.in
the recent change to fully-qualify exports.c to fix the build with
[apache] / server / Makefile.in
1
2 CLEAN_TARGETS = gen_test_char test_char.h gen_uri_delims uri_delims.h \
3         ApacheCoreOS2.def
4 DISTCLEAN_TARGETS = httpd.exp
5 EXTRACLEAN_TARGETS = exports.c export_vars.h
6
7 SUBDIRS = mpm
8
9 LTLIBRARY_NAME    = libmain.la
10 LTLIBRARY_SOURCES = \
11     test_char.h \
12         config.c log.c main.c vhost.c util.c \
13         util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \
14         rfc1413.c connection.c listen.c \
15         mpm_common.c util_charset.c util_debug.c util_xml.c \
16         util_filter.c $(top_srcdir)/server/exports.c buildmark.c scoreboard.c \
17         error_bucket.c protocol.c core.c request.c provider.c
18
19 TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp
20
21 include $(top_builddir)/build/rules.mk
22 include $(top_srcdir)/build/library.mk
23
24 gen_test_char_OBJECTS = gen_test_char.lo util_debug.lo
25 gen_test_char: $(gen_test_char_OBJECTS)
26         $(LINK) $(EXTRA_LDFLAGS) $(gen_test_char_OBJECTS) $(EXTRA_LIBS)
27
28 test_char.h: gen_test_char
29         ./gen_test_char > test_char.h
30
31 util.lo: test_char.h
32
33 EXPORT_FILES = $(top_srcdir)/include/*.h \
34        $(top_srcdir)/os/$(OS_DIR)/*.h \
35        $(top_srcdir)/srclib/apr/include/*.h \
36        $(top_srcdir)/srclib/apr-util/include/*.h \
37        $(top_srcdir)/modules/http/*.h
38
39 delete-exports:
40         @if test -f exports.c; then \
41                     headers="`find $(EXPORT_FILES) -newer exports.c`" ; \
42                     if test -n "$$headers"; then \
43                         echo Found newer headers. Will rebuild exports.c. ; \
44                         echo rm -f exports.c ; \
45                         rm -f exports.c ; \
46                     fi \
47         fi
48
49 # full path required to keep BSD make happy
50 $(top_srcdir)/server/exports.c:
51         $(AWK) -f $(top_srcdir)/build/make_exports.awk $(EXPORT_FILES) > $@
52
53 export_vars.h:
54         $(AWK) -f $(top_srcdir)/build/make_var_export.awk $(EXPORT_FILES) > $@
55
56 # wtf does this have to be explicit????
57 exports.lo: exports.c
58
59 # Rule to make def file for OS/2 core dll
60 ApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_header.def
61         cat $(top_srcdir)/os/$(OS_DIR)/core_header.def > $@
62         $(CPP) $< $(ALL_CPPFLAGS) $(ALL_INCLUDES) | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/  "\1"/' >> $@
63         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep "^[a-z]" | sed -e 's/^\(.*\)$$/  "\1"/' >> $@
64
65 # Rule to make exp file for AIX DSOs
66 httpd.exp: exports.c export_vars.h
67         @echo "#! ." > $@
68         @echo "* This file was AUTOGENERATED at build time." >> $@
69         @echo "* Please do not edit by hand." >> $@
70         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@
71         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@