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