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

E-mail: