Annotation of parser3/src/targets/apache13/Makefile.in, revision 1.38
1.1 paf 1: # Makefile.in generated automatically by automake 1.4 from Makefile.am
2:
3: # Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4: # This Makefile.in is free software; the Free Software Foundation
5: # gives unlimited permission to copy and/or distribute it,
6: # with or without modifications, as long as this notice is preserved.
7:
8: # This program is distributed in the hope that it will be useful,
9: # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10: # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11: # PARTICULAR PURPOSE.
12:
13:
14: SHELL = @SHELL@
15:
16: srcdir = @srcdir@
17: top_srcdir = @top_srcdir@
18: VPATH = @srcdir@
19: prefix = @prefix@
20: exec_prefix = @exec_prefix@
21:
22: bindir = @bindir@
23: sbindir = @sbindir@
24: libexecdir = @libexecdir@
25: datadir = @datadir@
26: sysconfdir = @sysconfdir@
27: sharedstatedir = @sharedstatedir@
28: localstatedir = @localstatedir@
29: libdir = @libdir@
30: infodir = @infodir@
31: mandir = @mandir@
32: includedir = @includedir@
33: oldincludedir = /usr/include
34:
35: DESTDIR =
36:
37: pkgdatadir = $(datadir)/@PACKAGE@
38: pkglibdir = $(libdir)/@PACKAGE@
39: pkgincludedir = $(includedir)/@PACKAGE@
40:
1.28 paf 41: top_builddir = ../../..
1.1 paf 42:
43: ACLOCAL = @ACLOCAL@
44: AUTOCONF = @AUTOCONF@
45: AUTOMAKE = @AUTOMAKE@
46: AUTOHEADER = @AUTOHEADER@
47:
48: INSTALL = @INSTALL@
49: INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
50: INSTALL_DATA = @INSTALL_DATA@
51: INSTALL_SCRIPT = @INSTALL_SCRIPT@
52: transform = @program_transform_name@
53:
54: NORMAL_INSTALL = :
55: PRE_INSTALL = :
56: POST_INSTALL = :
57: NORMAL_UNINSTALL = :
58: PRE_UNINSTALL = :
59: POST_UNINSTALL = :
60: host_alias = @host_alias@
61: host_triplet = @host@
1.19 parser 62: APACHE13 = @APACHE13@
1.22 paf 63: APACHE_LIBS = @APACHE_LIBS@
1.1 paf 64: AWK = @AWK@
65: CC = @CC@
66: CXX = @CXX@
67: INCLTDL = @INCLTDL@
68: LIBADD_DL = @LIBADD_DL@
69: LIBLTDL = @LIBLTDL@
70: MAKEINFO = @MAKEINFO@
1.36 paf 71: MIME_INCLUDES = @MIME_INCLUDES@
72: MIME_LIBS = @MIME_LIBS@
1.19 parser 73: P3S = @P3S@
1.1 paf 74: PACKAGE = @PACKAGE@
75: RANLIB = @RANLIB@
76: VERSION = @VERSION@
1.14 parser 77: XML_INCLUDES = @XML_INCLUDES@
78: XML_LIBS = @XML_LIBS@
1.1 paf 79: YACC = @YACC@
1.28 paf 80: charsetsdir = @charsetsdir@
1.33 paf 81: commentcharset_ = @commentcharset_@
1.1 paf 82: host_os = @host_os@
1.33 paf 83: mysql_client = @mysql_client@
84: oracle_client = @oracle_client@
85: pgsql_client = @pgsql_client@
1.29 paf 86: sqldriversdir = @sqldriversdir@
1.10 parser 87:
1.38 ! paf 88: SUBDIRS = hook
! 89:
! 90: #@test why not INCLUDES=?
1.35 paf 91: INCLUDES := $(INCLUDES) -I../../classes -I../../types $(INCLTDL) -I../../sql -I../../lib/pcre -I../../lib/md5 -I$(APACHE13)/src/include -I$(APACHE13)/src/os/unix -I$(APACHE13)/src/os/win32 @XML_INCLUDES@
1.25 paf 92:
1.20 parser 93: noinst_LIBRARIES = libmod_parser3.a
1.37 paf 94: libmod_parser3_a_SOURCES = pa_pool.C pa_threads.C mod_parser3.C pa_md5c.c
1.20 parser 95: noinst_DATA = apache_build_instruction
1.25 paf 96:
1.30 paf 97: EXTRA_DIST = ApacheModuleParser3.dsp
1.1 paf 98: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
1.28 paf 99: CONFIG_HEADER = ../../../src/include/pa_config_auto.h
1.20 parser 100: CONFIG_CLEAN_FILES = p3runConfigure
101: LIBRARIES = $(noinst_LIBRARIES)
102:
103:
1.28 paf 104: DEFS = @DEFS@ -I. -I$(srcdir) -I../../../src/include
1.20 parser 105: CPPFLAGS = @CPPFLAGS@
106: LDFLAGS = @LDFLAGS@
107: LIBS = @LIBS@
108: libmod_parser3_a_LIBADD =
1.37 paf 109: libmod_parser3_a_OBJECTS = pa_pool.o pa_threads.o mod_parser3.o \
1.35 paf 110: pa_md5c.o
1.20 parser 111: AR = ar
112: CXXFLAGS = @CXXFLAGS@
113: CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
114: CXXLD = $(CXX)
1.31 paf 115: CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
1.35 paf 116: CFLAGS = @CFLAGS@
117: COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
118: CCLD = $(CC)
119: LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
1.20 parser 120: DATA = $(noinst_DATA)
121:
122: DIST_COMMON = Makefile.am Makefile.in p3runConfigure.in
1.1 paf 123:
124:
125: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
126:
1.23 paf 127: TAR = tar
1.1 paf 128: GZIP_ENV = --best
1.37 paf 129: DEP_FILES = .deps/mod_parser3.P .deps/pa_md5c.P .deps/pa_pool.P \
130: .deps/pa_threads.P
1.20 parser 131: SOURCES = $(libmod_parser3_a_SOURCES)
132: OBJECTS = $(libmod_parser3_a_OBJECTS)
133:
1.1 paf 134: all: all-redirect
135: .SUFFIXES:
1.31 paf 136: .SUFFIXES: .C .S .c .o .s
1.1 paf 137: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
1.28 paf 138: cd $(top_srcdir) && $(AUTOMAKE) --gnu src/targets/apache13/Makefile
1.1 paf 139:
140: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
141: cd $(top_builddir) \
142: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
143:
1.20 parser 144: p3runConfigure: $(top_builddir)/config.status p3runConfigure.in
145: cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
146:
147: mostlyclean-noinstLIBRARIES:
148:
149: clean-noinstLIBRARIES:
150: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES)
151:
152: distclean-noinstLIBRARIES:
153:
154: maintainer-clean-noinstLIBRARIES:
155:
156: .s.o:
157: $(COMPILE) -c $<
158:
159: .S.o:
160: $(COMPILE) -c $<
161:
162: mostlyclean-compile:
163: -rm -f *.o core *.core
164:
165: clean-compile:
166:
167: distclean-compile:
168: -rm -f *.tab.c
169:
170: maintainer-clean-compile:
171:
172: libmod_parser3.a: $(libmod_parser3_a_OBJECTS) $(libmod_parser3_a_DEPENDENCIES)
173: -rm -f libmod_parser3.a
174: $(AR) cru libmod_parser3.a $(libmod_parser3_a_OBJECTS) $(libmod_parser3_a_LIBADD)
175: $(RANLIB) libmod_parser3.a
176: .C.o:
177: $(CXXCOMPILE) -c $<
1.1 paf 178:
1.38 ! paf 179: # This directory's subdirectories are mostly independent; you can cd
! 180: # into them and run `make' without going through this Makefile.
! 181: # To change the values of `make' variables: instead of editing Makefiles,
! 182: # (1) if the variable is set in `config.status', edit `config.status'
! 183: # (which will cause the Makefiles to be regenerated when you run `make');
! 184: # (2) otherwise, pass the desired values on the `make' command line.
! 185:
! 186: @SET_MAKE@
! 187:
! 188: all-recursive install-data-recursive install-exec-recursive \
! 189: installdirs-recursive install-recursive uninstall-recursive \
! 190: check-recursive installcheck-recursive info-recursive dvi-recursive:
! 191: @set fnord $(MAKEFLAGS); amf=$$2; \
! 192: dot_seen=no; \
! 193: target=`echo $@ | sed s/-recursive//`; \
! 194: list='$(SUBDIRS)'; for subdir in $$list; do \
! 195: echo "Making $$target in $$subdir"; \
! 196: if test "$$subdir" = "."; then \
! 197: dot_seen=yes; \
! 198: local_target="$$target-am"; \
! 199: else \
! 200: local_target="$$target"; \
! 201: fi; \
! 202: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
! 203: || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
! 204: done; \
! 205: if test "$$dot_seen" = "no"; then \
! 206: $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
! 207: fi; test -z "$$fail"
! 208:
! 209: mostlyclean-recursive clean-recursive distclean-recursive \
! 210: maintainer-clean-recursive:
! 211: @set fnord $(MAKEFLAGS); amf=$$2; \
! 212: dot_seen=no; \
! 213: rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
! 214: rev="$$subdir $$rev"; \
! 215: test "$$subdir" = "." && dot_seen=yes; \
! 216: done; \
! 217: test "$$dot_seen" = "no" && rev=". $$rev"; \
! 218: target=`echo $@ | sed s/-recursive//`; \
! 219: for subdir in $$rev; do \
! 220: echo "Making $$target in $$subdir"; \
! 221: if test "$$subdir" = "."; then \
! 222: local_target="$$target-am"; \
! 223: else \
! 224: local_target="$$target"; \
! 225: fi; \
! 226: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
! 227: || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
! 228: done && test -z "$$fail"
! 229: tags-recursive:
! 230: list='$(SUBDIRS)'; for subdir in $$list; do \
! 231: test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
! 232: done
! 233:
1.1 paf 234: tags: TAGS
235:
236: ID: $(HEADERS) $(SOURCES) $(LISP)
237: list='$(SOURCES) $(HEADERS)'; \
238: unique=`for i in $$list; do echo $$i; done | \
239: awk ' { files[$$0] = 1; } \
240: END { for (i in files) print i; }'`; \
241: here=`pwd` && cd $(srcdir) \
242: && mkid -f$$here/ID $$unique $(LISP)
243:
1.38 ! paf 244: TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
1.1 paf 245: tags=; \
246: here=`pwd`; \
1.38 ! paf 247: list='$(SUBDIRS)'; for subdir in $$list; do \
! 248: if test "$$subdir" = .; then :; else \
! 249: test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
! 250: fi; \
! 251: done; \
1.1 paf 252: list='$(SOURCES) $(HEADERS)'; \
253: unique=`for i in $$list; do echo $$i; done | \
254: awk ' { files[$$0] = 1; } \
255: END { for (i in files) print i; }'`; \
256: test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
257: || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
258:
259: mostlyclean-tags:
260:
261: clean-tags:
262:
263: distclean-tags:
264: -rm -f TAGS ID
265:
266: maintainer-clean-tags:
267:
268: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
269:
1.28 paf 270: subdir = src/targets/apache13
1.1 paf 271:
272: distdir: $(DISTFILES)
273: here=`cd $(top_builddir) && pwd`; \
274: top_distdir=`cd $(top_distdir) && pwd`; \
275: distdir=`cd $(distdir) && pwd`; \
276: cd $(top_srcdir) \
1.28 paf 277: && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu src/targets/apache13/Makefile
1.1 paf 278: @for file in $(DISTFILES); do \
279: d=$(srcdir); \
280: if test -d $$d/$$file; then \
1.23 paf 281: cp -pr $$/$$file $(distdir)/$$file; \
1.1 paf 282: else \
283: test -f $(distdir)/$$file \
284: || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
285: || cp -p $$d/$$file $(distdir)/$$file || :; \
286: fi; \
287: done
1.38 ! paf 288: for subdir in $(SUBDIRS); do \
! 289: if test "$$subdir" = .; then :; else \
! 290: test -d $(distdir)/$$subdir \
! 291: || mkdir $(distdir)/$$subdir \
! 292: || exit 1; \
! 293: chmod 777 $(distdir)/$$subdir; \
! 294: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
! 295: || exit 1; \
! 296: fi; \
! 297: done
1.20 parser 298:
299: DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
300:
301: -include $(DEP_FILES)
302:
303: mostlyclean-depend:
304:
305: clean-depend:
306:
307: distclean-depend:
308: -rm -rf .deps
309:
310: maintainer-clean-depend:
311:
312: %.o: %.c
313: @echo '$(COMPILE) -c $<'; \
314: $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
315: @-cp .deps/$(*F).pp .deps/$(*F).P; \
316: tr ' ' '\012' < .deps/$(*F).pp \
317: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
318: >> .deps/$(*F).P; \
319: rm .deps/$(*F).pp
320:
321: %.lo: %.c
322: @echo '$(LTCOMPILE) -c $<'; \
323: $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
324: @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
325: < .deps/$(*F).pp > .deps/$(*F).P; \
326: tr ' ' '\012' < .deps/$(*F).pp \
327: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
328: >> .deps/$(*F).P; \
329: rm -f .deps/$(*F).pp
330:
331: %.o: %.C
332: @echo '$(CXXCOMPILE) -c $<'; \
333: $(CXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
334: @-cp .deps/$(*F).pp .deps/$(*F).P; \
335: tr ' ' '\012' < .deps/$(*F).pp \
336: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
337: >> .deps/$(*F).P; \
338: rm .deps/$(*F).pp
339:
340: %.lo: %.C
341: @echo '$(LTCXXCOMPILE) -c $<'; \
342: $(LTCXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
343: @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
344: < .deps/$(*F).pp > .deps/$(*F).P; \
345: tr ' ' '\012' < .deps/$(*F).pp \
346: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
347: >> .deps/$(*F).P; \
348: rm -f .deps/$(*F).pp
1.1 paf 349: info-am:
1.38 ! paf 350: info: info-recursive
1.1 paf 351: dvi-am:
1.38 ! paf 352: dvi: dvi-recursive
1.1 paf 353: check-am: all-am
1.38 ! paf 354: check: check-recursive
1.1 paf 355: installcheck-am:
1.38 ! paf 356: installcheck: installcheck-recursive
1.1 paf 357: install-exec-am:
1.38 ! paf 358: install-exec: install-exec-recursive
1.1 paf 359:
360: install-data-am:
1.38 ! paf 361: install-data: install-data-recursive
1.1 paf 362:
363: install-am: all-am
364: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1.38 ! paf 365: install: install-recursive
1.1 paf 366: uninstall-am:
1.38 ! paf 367: uninstall: uninstall-recursive
1.20 parser 368: all-am: Makefile $(LIBRARIES) $(DATA)
1.38 ! paf 369: all-redirect: all-recursive
1.1 paf 370: install-strip:
371: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
1.38 ! paf 372: installdirs: installdirs-recursive
! 373: installdirs-am:
1.1 paf 374:
375:
376: mostlyclean-generic:
377:
378: clean-generic:
379:
380: distclean-generic:
381: -rm -f Makefile $(CONFIG_CLEAN_FILES)
382: -rm -f config.cache config.log stamp-h stamp-h[0-9]*
383:
384: maintainer-clean-generic:
1.20 parser 385: mostlyclean-am: mostlyclean-noinstLIBRARIES mostlyclean-compile \
1.31 paf 386: mostlyclean-tags mostlyclean-depend mostlyclean-generic
1.1 paf 387:
1.38 ! paf 388: mostlyclean: mostlyclean-recursive
1.1 paf 389:
1.31 paf 390: clean-am: clean-noinstLIBRARIES clean-compile clean-tags clean-depend \
391: clean-generic mostlyclean-am
1.1 paf 392:
1.38 ! paf 393: clean: clean-recursive
1.1 paf 394:
1.20 parser 395: distclean-am: distclean-noinstLIBRARIES distclean-compile \
1.31 paf 396: distclean-tags distclean-depend distclean-generic \
397: clean-am
1.1 paf 398:
1.38 ! paf 399: distclean: distclean-recursive
1.1 paf 400:
1.20 parser 401: maintainer-clean-am: maintainer-clean-noinstLIBRARIES \
1.31 paf 402: maintainer-clean-compile maintainer-clean-tags \
403: maintainer-clean-depend maintainer-clean-generic \
404: distclean-am
1.1 paf 405: @echo "This command is intended for maintainers to use;"
406: @echo "it deletes files that may require special tools to rebuild."
407:
1.38 ! paf 408: maintainer-clean: maintainer-clean-recursive
1.1 paf 409:
1.20 parser 410: .PHONY: mostlyclean-noinstLIBRARIES distclean-noinstLIBRARIES \
411: clean-noinstLIBRARIES maintainer-clean-noinstLIBRARIES \
412: mostlyclean-compile distclean-compile clean-compile \
1.38 ! paf 413: maintainer-clean-compile install-data-recursive \
! 414: uninstall-data-recursive install-exec-recursive \
! 415: uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
! 416: all-recursive check-recursive installcheck-recursive info-recursive \
! 417: dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
! 418: maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
! 419: distclean-tags clean-tags maintainer-clean-tags distdir \
! 420: mostlyclean-depend distclean-depend clean-depend \
! 421: maintainer-clean-depend info-am info dvi-am dvi check check-am \
! 422: installcheck-am installcheck install-exec-am install-exec \
! 423: install-data-am install-data install-am install uninstall-am uninstall \
! 424: all-redirect all-am all installdirs-am installdirs mostlyclean-generic \
! 425: distclean-generic clean-generic maintainer-clean-generic clean \
! 426: mostlyclean distclean maintainer-clean
1.20 parser 427:
428:
429: apache_build_instruction:
430: -chmod +x p3runConfigure
431: -cp -f p3runConfigure $(APACHE13)
432: @echo "******************************************************"
433: @echo "to build apache with parser3 module:"
434: @echo
435: @echo "1. cd $(APACHE13)"
436: @echo
437: @echo "2. ./p3runConfigure [configure options]"
438: @echo
439: @echo "3. make"
440: @echo "******************************************************"
1.1 paf 441:
442: # Tell versions [3.59,3.63) of GNU make to not export all variables.
443: # Otherwise a system limit (for SysV at least) may be exceeded.
444: .NOEXPORT:
E-mail: