]> granicus.if.org Git - apache/blob - server/Makefile.in
ad99178a108f6864bd1b4c1fc7de15af8cde57c5
[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 exports.c buildmark.c scoreboard.c \
17         error_bucket.c protocol.c core.c request.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
38 delete-exports:
39         @if test -f exports.c; then \
40                     headers="`find $(EXPORT_FILES) -newer exports.c`" ; \
41                     if test -n "$$headers"; then \
42                         echo Found newer headers. Will rebuild exports.c. ; \
43                         echo rm -f exports.c ; \
44                         rm -f exports.c ; \
45                     fi \
46         fi
47
48 exports.c:
49         $(AWK) -f $(top_srcdir)/build/make_exports.awk $(EXPORT_FILES) > $@
50
51 export_vars.h:
52         $(AWK) -f $(top_srcdir)/build/make_var_export.awk $(EXPORT_FILES) > $@
53
54 # wtf does this have to be explicit????
55 exports.lo: exports.c
56
57 # Rule to make def file for OS/2 core dll
58 ApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_header.def
59         cat $(top_srcdir)/os/$(OS_DIR)/core_header.def > $@
60         $(CPP) $< $(ALL_CPPFLAGS) $(ALL_INCLUDES) | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/  "\1"/' >> $@
61         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep "^[a-z]" | sed -e 's/^\(.*\)$$/  "\1"/' >> $@
62
63 # Rule to make exp file for AIX DSOs
64 httpd.exp: exports.c export_vars.h
65         @echo "#! ." > $@
66         @echo "* This file was AUTOGENERATED at build time." >> $@
67         @echo "* Please do not edit by hand." >> $@
68         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@
69         $(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@