Annotation of parser3/src/Makefile.in, revision 1.49
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.41 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.25 parser 62: APACHE13 = @APACHE13@
1.31 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.49 ! paf 71: MIME_INCLUDES = @MIME_INCLUDES@
! 72: MIME_LIBS = @MIME_LIBS@
1.25 parser 73: P3S = @P3S@
1.1 paf 74: PACKAGE = @PACKAGE@
75: RANLIB = @RANLIB@
76: VERSION = @VERSION@
1.20 parser 77: XML_INCLUDES = @XML_INCLUDES@
78: XML_LIBS = @XML_LIBS@
1.1 paf 79: YACC = @YACC@
1.40 paf 80: charsetsdir = @charsetsdir@
1.46 paf 81: commentcharset_ = @commentcharset_@
1.1 paf 82: host_os = @host_os@
1.46 paf 83: mysql_client = @mysql_client@
84: oracle_client = @oracle_client@
85: pgsql_client = @pgsql_client@
1.41 paf 86: sqldriversdir = @sqldriversdir@
1.2 paf 87:
1.48 paf 88: SUBDIRS = include main sql types classes lib targets
1.43 paf 89: EXTRA_DIST = ident.awk
1.1 paf 90: mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
1.41 paf 91: CONFIG_HEADER = ../src/include/pa_config_auto.h
1.1 paf 92: CONFIG_CLEAN_FILES =
1.41 paf 93: DIST_COMMON = Makefile.am Makefile.in
1.1 paf 94:
95:
96: DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
97:
1.36 paf 98: TAR = tar
1.1 paf 99: GZIP_ENV = --best
100: all: all-redirect
101: .SUFFIXES:
102: $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
1.41 paf 103: cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile
1.1 paf 104:
105: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES)
106: cd $(top_builddir) \
1.41 paf 107: && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
1.1 paf 108:
109:
110: # This directory's subdirectories are mostly independent; you can cd
111: # into them and run `make' without going through this Makefile.
112: # To change the values of `make' variables: instead of editing Makefiles,
113: # (1) if the variable is set in `config.status', edit `config.status'
114: # (which will cause the Makefiles to be regenerated when you run `make');
115: # (2) otherwise, pass the desired values on the `make' command line.
116:
117: @SET_MAKE@
118:
119: all-recursive install-data-recursive install-exec-recursive \
120: installdirs-recursive install-recursive uninstall-recursive \
121: check-recursive installcheck-recursive info-recursive dvi-recursive:
122: @set fnord $(MAKEFLAGS); amf=$$2; \
123: dot_seen=no; \
124: target=`echo $@ | sed s/-recursive//`; \
125: list='$(SUBDIRS)'; for subdir in $$list; do \
126: echo "Making $$target in $$subdir"; \
127: if test "$$subdir" = "."; then \
128: dot_seen=yes; \
129: local_target="$$target-am"; \
130: else \
131: local_target="$$target"; \
132: fi; \
133: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
134: || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
135: done; \
136: if test "$$dot_seen" = "no"; then \
137: $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
138: fi; test -z "$$fail"
139:
140: mostlyclean-recursive clean-recursive distclean-recursive \
141: maintainer-clean-recursive:
142: @set fnord $(MAKEFLAGS); amf=$$2; \
143: dot_seen=no; \
144: rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
145: rev="$$subdir $$rev"; \
146: test "$$subdir" = "." && dot_seen=yes; \
147: done; \
148: test "$$dot_seen" = "no" && rev=". $$rev"; \
149: target=`echo $@ | sed s/-recursive//`; \
150: for subdir in $$rev; do \
151: echo "Making $$target in $$subdir"; \
152: if test "$$subdir" = "."; then \
153: local_target="$$target-am"; \
154: else \
155: local_target="$$target"; \
156: fi; \
157: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
158: || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
159: done && test -z "$$fail"
160: tags-recursive:
161: list='$(SUBDIRS)'; for subdir in $$list; do \
162: test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
163: done
164:
165: tags: TAGS
166:
167: ID: $(HEADERS) $(SOURCES) $(LISP)
168: list='$(SOURCES) $(HEADERS)'; \
169: unique=`for i in $$list; do echo $$i; done | \
170: awk ' { files[$$0] = 1; } \
171: END { for (i in files) print i; }'`; \
172: here=`pwd` && cd $(srcdir) \
173: && mkid -f$$here/ID $$unique $(LISP)
174:
175: TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
176: tags=; \
177: here=`pwd`; \
178: list='$(SUBDIRS)'; for subdir in $$list; do \
179: if test "$$subdir" = .; then :; else \
180: test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
181: fi; \
182: done; \
183: list='$(SOURCES) $(HEADERS)'; \
184: unique=`for i in $$list; do echo $$i; done | \
185: awk ' { files[$$0] = 1; } \
186: END { for (i in files) print i; }'`; \
187: test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
188: || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
189:
190: mostlyclean-tags:
191:
192: clean-tags:
193:
194: distclean-tags:
195: -rm -f TAGS ID
196:
197: maintainer-clean-tags:
198:
1.41 paf 199: distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
200:
201: subdir = src
1.1 paf 202:
203: distdir: $(DISTFILES)
204: here=`cd $(top_builddir) && pwd`; \
1.41 paf 205: top_distdir=`cd $(top_distdir) && pwd`; \
1.1 paf 206: distdir=`cd $(distdir) && pwd`; \
207: cd $(top_srcdir) \
1.41 paf 208: && $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu src/Makefile
1.1 paf 209: @for file in $(DISTFILES); do \
210: d=$(srcdir); \
211: if test -d $$d/$$file; then \
1.36 paf 212: cp -pr $$/$$file $(distdir)/$$file; \
1.1 paf 213: else \
214: test -f $(distdir)/$$file \
215: || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
216: || cp -p $$d/$$file $(distdir)/$$file || :; \
217: fi; \
218: done
219: for subdir in $(SUBDIRS); do \
220: if test "$$subdir" = .; then :; else \
221: test -d $(distdir)/$$subdir \
222: || mkdir $(distdir)/$$subdir \
223: || exit 1; \
224: chmod 777 $(distdir)/$$subdir; \
1.41 paf 225: (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
1.1 paf 226: || exit 1; \
227: fi; \
228: done
229: info-am:
230: info: info-recursive
231: dvi-am:
232: dvi: dvi-recursive
233: check-am: all-am
234: check: check-recursive
235: installcheck-am:
236: installcheck: installcheck-recursive
237: install-exec-am:
238: install-exec: install-exec-recursive
239:
240: install-data-am:
241: install-data: install-data-recursive
242:
243: install-am: all-am
244: @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
245: install: install-recursive
246: uninstall-am:
247: uninstall: uninstall-recursive
248: all-am: Makefile
249: all-redirect: all-recursive
250: install-strip:
251: $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
252: installdirs: installdirs-recursive
253: installdirs-am:
254:
255:
256: mostlyclean-generic:
257:
258: clean-generic:
259:
260: distclean-generic:
261: -rm -f Makefile $(CONFIG_CLEAN_FILES)
262: -rm -f config.cache config.log stamp-h stamp-h[0-9]*
263:
264: maintainer-clean-generic:
1.41 paf 265: mostlyclean-am: mostlyclean-tags mostlyclean-generic
1.1 paf 266:
267: mostlyclean: mostlyclean-recursive
268:
1.41 paf 269: clean-am: clean-tags clean-generic mostlyclean-am
1.1 paf 270:
271: clean: clean-recursive
272:
1.41 paf 273: distclean-am: distclean-tags distclean-generic clean-am
1.1 paf 274:
275: distclean: distclean-recursive
276:
1.41 paf 277: maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
278: distclean-am
1.1 paf 279: @echo "This command is intended for maintainers to use;"
280: @echo "it deletes files that may require special tools to rebuild."
281:
282: maintainer-clean: maintainer-clean-recursive
283:
1.41 paf 284: .PHONY: install-data-recursive uninstall-data-recursive \
285: install-exec-recursive uninstall-exec-recursive installdirs-recursive \
286: uninstalldirs-recursive all-recursive check-recursive \
287: installcheck-recursive info-recursive dvi-recursive \
288: mostlyclean-recursive distclean-recursive clean-recursive \
1.1 paf 289: maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
290: distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
291: dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
292: install-exec install-data-am install-data install-am install \
293: uninstall-am uninstall all-redirect all-am all installdirs-am \
294: installdirs mostlyclean-generic distclean-generic clean-generic \
295: maintainer-clean-generic clean mostlyclean distclean maintainer-clean
1.40 paf 296:
1.1 paf 297:
298: # Tell versions [3.59,3.63) of GNU make to not export all variables.
299: # Otherwise a system limit (for SysV at least) may be exceeded.
300: .NOEXPORT:
E-mail: