Annotation of parser3/src/targets/cgi/Makefile.in, revision 1.33
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:
41: top_builddir = ../..
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.21 parser 62: APACHE13 = @APACHE13@
1.25 paf 63: APACHE_LIBS = @APACHE_LIBS@
1.1 paf 64: AS = @AS@
65: AWK = @AWK@
66: CC = @CC@
67: CXX = @CXX@
1.26 paf 68: DB2_INCLUDES = @DB2_INCLUDES@
69: DB2_LIBS = @DB2_LIBS@
1.1 paf 70: DLLTOOL = @DLLTOOL@
71: INCLTDL = @INCLTDL@
72: LIBADD_DL = @LIBADD_DL@
73: LIBLTDL = @LIBLTDL@
74: LIBTOOL = @LIBTOOL@
75: LIBTOOL_DEPS = @LIBTOOL_DEPS@
76: LN_S = @LN_S@
77: MAKEINFO = @MAKEINFO@
78: OBJDUMP = @OBJDUMP@
1.21 parser 79: P3S = @P3S@
1.1 paf 80: PACKAGE = @PACKAGE@
81: RANLIB = @RANLIB@
82: VERSION = @VERSION@
1.16 parser 83: XML_INCLUDES = @XML_INCLUDES@
84: XML_LIBS = @XML_LIBS@
1.1 paf 85: YACC = @YACC@
86: host_os = @host_os@
1.3 parser 87:
1.31 paf 88: INCLUDES = -I../../classes -I../../types -I$(INCLTDL) -I../../sql -I../../pcre @XML_INCLUDES@
1.30 paf 89:
1.13 parser 90: #for sysadmin-controlled auto.p
1.32 paf 91: AM_CPPFLAGS := $(AM_CPPFLAGS) -DSYSCONFDIR=\"$(sysconfdir)\"
1.30 paf 92:
1.1 paf 93: bin_PROGRAMS = parser3
1.17 parser 94: parser3_SOURCES = pa_pool.C pa_threads.C parser3.C ident.C
1.33 ! paf 95: parser3_LDADD = ../../main/libmain.a ../../classes/libclasses.a ../../main/libmain.a ../../types/libtypes.a $(LIBLTDL) ../../classes/gd/libgd.a ../../pcre/libpcre.a @XML_LIBS@ @DB2_LIBS@
1.30 paf 96:
1.17 parser 97: IDENT_AWK = ../../ident.awk
98: IDENT_DEPS = *.C
1.1 paf 99: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
100: CONFIG_HEADER = ../../include/pa_config_auto.h
101: CONFIG_CLEAN_FILES =
102: PROGRAMS = $(bin_PROGRAMS)
103:
104:
105: DEFS = @DEFS@ -I. -I$(srcdir) -I../../include
1.32 paf 106: CPPFLAGS = @CPPFLAGS@
1.1 paf 107: LDFLAGS = @LDFLAGS@
108: LIBS = @LIBS@
1.17 parser 109: parser3_OBJECTS = pa_pool.o pa_threads.o parser3.o ident.o
1.27 paf 110: parser3_DEPENDENCIES = ../../main/libmain.a ../../classes/libclasses.a \
111: ../../main/libmain.a ../../types/libtypes.a ../../classes/gd/libgd.a \
1.33 ! paf 112: ../../pcre/libpcre.a
1.1 paf 113: parser3_LDFLAGS =
114: CXXFLAGS = @CXXFLAGS@
115: CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
116: LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
117: CXXLD = $(CXX)
118: CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@
119: DIST_COMMON = Makefile.am Makefile.in
120:
121:
122: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
123:
1.28 paf 124: TAR = tar
1.1 paf 125: GZIP_ENV = --best
1.17 parser 126: DEP_FILES = .deps/ident.P .deps/pa_pool.P .deps/pa_threads.P \
127: .deps/parser3.P
1.1 paf 128: SOURCES = $(parser3_SOURCES)
129: OBJECTS = $(parser3_OBJECTS)
130:
131: all: all-redirect
132: .SUFFIXES:
133: .SUFFIXES: .C .S .c .lo .o .s
134: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
135: cd $(top_srcdir) && $(AUTOMAKE) --gnu targets/cgi/Makefile
136:
137: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
138: cd $(top_builddir) \
139: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
140:
141:
142: mostlyclean-binPROGRAMS:
143:
144: clean-binPROGRAMS:
145: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
146:
147: distclean-binPROGRAMS:
148:
149: maintainer-clean-binPROGRAMS:
150:
151: install-binPROGRAMS: $(bin_PROGRAMS)
152: @$(NORMAL_INSTALL)
153: $(mkinstalldirs) $(DESTDIR)$(bindir)
154: @list='$(bin_PROGRAMS)'; for p in $$list; do \
155: if test -f $$p; then \
156: echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
157: $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
158: else :; fi; \
159: done
160:
161: uninstall-binPROGRAMS:
162: @$(NORMAL_UNINSTALL)
163: list='$(bin_PROGRAMS)'; for p in $$list; do \
164: rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
165: done
166:
167: .s.o:
168: $(COMPILE) -c $<
169:
170: .S.o:
171: $(COMPILE) -c $<
172:
173: mostlyclean-compile:
174: -rm -f *.o core *.core
175:
176: clean-compile:
177:
178: distclean-compile:
179: -rm -f *.tab.c
180:
181: maintainer-clean-compile:
182:
183: .s.lo:
184: $(LIBTOOL) --mode=compile $(COMPILE) -c $<
185:
186: .S.lo:
187: $(LIBTOOL) --mode=compile $(COMPILE) -c $<
188:
189: mostlyclean-libtool:
190: -rm -f *.lo
191:
192: clean-libtool:
193: -rm -rf .libs _libs
194:
195: distclean-libtool:
196:
197: maintainer-clean-libtool:
198:
199: parser3: $(parser3_OBJECTS) $(parser3_DEPENDENCIES)
200: @rm -f parser3
201: $(CXXLINK) $(parser3_LDFLAGS) $(parser3_OBJECTS) $(parser3_LDADD) $(LIBS)
202: .C.o:
203: $(CXXCOMPILE) -c $<
204: .C.lo:
205: $(LTCXXCOMPILE) -c $<
206:
207: tags: TAGS
208:
209: ID: $(HEADERS) $(SOURCES) $(LISP)
210: list='$(SOURCES) $(HEADERS)'; \
211: unique=`for i in $$list; do echo $$i; done | \
212: awk ' { files[$$0] = 1; } \
213: END { for (i in files) print i; }'`; \
214: here=`pwd` && cd $(srcdir) \
215: && mkid -f$$here/ID $$unique $(LISP)
216:
217: TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
218: tags=; \
219: here=`pwd`; \
220: list='$(SOURCES) $(HEADERS)'; \
221: unique=`for i in $$list; do echo $$i; done | \
222: awk ' { files[$$0] = 1; } \
223: END { for (i in files) print i; }'`; \
224: test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
225: || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
226:
227: mostlyclean-tags:
228:
229: clean-tags:
230:
231: distclean-tags:
232: -rm -f TAGS ID
233:
234: maintainer-clean-tags:
235:
236: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
237:
238: subdir = targets/cgi
239:
240: distdir: $(DISTFILES)
241: here=`cd $(top_builddir) && pwd`; \
242: top_distdir=`cd $(top_distdir) && pwd`; \
243: distdir=`cd $(distdir) && pwd`; \
244: cd $(top_srcdir) \
245: && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu targets/cgi/Makefile
246: @for file in $(DISTFILES); do \
247: d=$(srcdir); \
248: if test -d $$d/$$file; then \
1.28 paf 249: cp -pr $$/$$file $(distdir)/$$file; \
1.1 paf 250: else \
251: test -f $(distdir)/$$file \
252: || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
253: || cp -p $$d/$$file $(distdir)/$$file || :; \
254: fi; \
255: done
256:
257: DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :)
258:
259: -include $(DEP_FILES)
260:
261: mostlyclean-depend:
262:
263: clean-depend:
264:
265: distclean-depend:
266: -rm -rf .deps
267:
268: maintainer-clean-depend:
269:
270: %.o: %.c
271: @echo '$(COMPILE) -c $<'; \
272: $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
273: @-cp .deps/$(*F).pp .deps/$(*F).P; \
274: tr ' ' '\012' < .deps/$(*F).pp \
275: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
276: >> .deps/$(*F).P; \
277: rm .deps/$(*F).pp
278:
279: %.lo: %.c
280: @echo '$(LTCOMPILE) -c $<'; \
281: $(LTCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
282: @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
283: < .deps/$(*F).pp > .deps/$(*F).P; \
284: tr ' ' '\012' < .deps/$(*F).pp \
285: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
286: >> .deps/$(*F).P; \
287: rm -f .deps/$(*F).pp
288:
289: %.o: %.C
290: @echo '$(CXXCOMPILE) -c $<'; \
291: $(CXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
292: @-cp .deps/$(*F).pp .deps/$(*F).P; \
293: tr ' ' '\012' < .deps/$(*F).pp \
294: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
295: >> .deps/$(*F).P; \
296: rm .deps/$(*F).pp
297:
298: %.lo: %.C
299: @echo '$(LTCXXCOMPILE) -c $<'; \
300: $(LTCXXCOMPILE) -Wp,-MD,.deps/$(*F).pp -c $<
301: @-sed -e 's/^\([^:]*\)\.o[ ]*:/\1.lo \1.o :/' \
302: < .deps/$(*F).pp > .deps/$(*F).P; \
303: tr ' ' '\012' < .deps/$(*F).pp \
304: | sed -e 's/^\\$$//' -e '/^$$/ d' -e '/:$$/ d' -e 's/$$/ :/' \
305: >> .deps/$(*F).P; \
306: rm -f .deps/$(*F).pp
307: info-am:
308: info: info-am
309: dvi-am:
310: dvi: dvi-am
311: check-am: all-am
312: check: check-am
313: installcheck-am:
314: installcheck: installcheck-am
315: install-exec-am: install-binPROGRAMS
316: install-exec: install-exec-am
317:
318: install-data-am:
319: install-data: install-data-am
320:
321: install-am: all-am
322: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
323: install: install-am
324: uninstall-am: uninstall-binPROGRAMS
325: uninstall: uninstall-am
326: all-am: Makefile $(PROGRAMS)
327: all-redirect: all-am
328: install-strip:
329: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
330: installdirs:
331: $(mkinstalldirs) $(DESTDIR)$(bindir)
332:
333:
334: mostlyclean-generic:
335:
336: clean-generic:
337:
338: distclean-generic:
339: -rm -f Makefile $(CONFIG_CLEAN_FILES)
340: -rm -f config.cache config.log stamp-h stamp-h[0-9]*
341:
342: maintainer-clean-generic:
343: mostlyclean-am: mostlyclean-binPROGRAMS mostlyclean-compile \
344: mostlyclean-libtool mostlyclean-tags mostlyclean-depend \
345: mostlyclean-generic
346:
347: mostlyclean: mostlyclean-am
348:
349: clean-am: clean-binPROGRAMS clean-compile clean-libtool clean-tags \
350: clean-depend clean-generic mostlyclean-am
351:
352: clean: clean-am
353:
354: distclean-am: distclean-binPROGRAMS distclean-compile distclean-libtool \
355: distclean-tags distclean-depend distclean-generic \
356: clean-am
357: -rm -f libtool
358:
359: distclean: distclean-am
360:
361: maintainer-clean-am: maintainer-clean-binPROGRAMS \
362: maintainer-clean-compile maintainer-clean-libtool \
363: maintainer-clean-tags maintainer-clean-depend \
364: maintainer-clean-generic distclean-am
365: @echo "This command is intended for maintainers to use;"
366: @echo "it deletes files that may require special tools to rebuild."
367:
368: maintainer-clean: maintainer-clean-am
369:
370: .PHONY: mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \
371: maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \
372: mostlyclean-compile distclean-compile clean-compile \
373: maintainer-clean-compile mostlyclean-libtool distclean-libtool \
374: clean-libtool maintainer-clean-libtool tags mostlyclean-tags \
375: distclean-tags clean-tags maintainer-clean-tags distdir \
376: mostlyclean-depend distclean-depend clean-depend \
377: maintainer-clean-depend info-am info dvi-am dvi check check-am \
378: installcheck-am installcheck install-exec-am install-exec \
379: install-data-am install-data install-am install uninstall-am uninstall \
380: all-redirect all-am all installdirs mostlyclean-generic \
381: distclean-generic clean-generic maintainer-clean-generic clean \
382: mostlyclean distclean maintainer-clean
383:
1.17 parser 384:
385: ident.C: $(IDENT_AWK) $(IDENT_DEPS) Makefile.am
386: rm -f ident.C
387: echo // do not edit. autogenerated by Makefile.am > ident.C.new
388: cat $(IDENT_DEPS) | $(AWK) -f $(IDENT_AWK) -v project=parser3 >> ident.C.new
389: mv ident.C.new ident.C
1.1 paf 390:
391: # Tell versions [3.59,3.63) of GNU make to not export all variables.
392: # Otherwise a system limit (for SysV at least) may be exceeded.
393: .NOEXPORT:
E-mail: