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