--- parser3/src/main/Makefile.in 2001/09/25 09:36:51 1.14 +++ parser3/src/main/Makefile.in 2001/10/09 15:21:12 1.18 @@ -84,7 +84,10 @@ host_os = @host_os@ INCLUDES = -I../types -I../classes -I../sql -I../pcre $(INCLTDL) @XML_INCLUDES@ noinst_LIBRARIES = libmain.a -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_xslt_stylesheet_manager.C +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_xslt_stylesheet_manager.C ident.C pa_charset_connection.C pa_charset_manager.C + +IDENT_AWK = ../ident.awk +IDENT_DEPS = *.h *.C mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../include/pa_config_auto.h CONFIG_CLEAN_FILES = @@ -100,7 +103,8 @@ libmain_a_OBJECTS = compile.o compile.t pa_array.o pa_common.o pa_exception.o pa_globals.o pa_hash.o pa_pool.o \ pa_request.o pa_string.o pa_table.o untaint.o pa_dir.o pa_exec.o \ pa_socks.o pa_sql_driver_manager.o pa_dictionary.o \ -pa_xslt_stylesheet_manager.o +pa_xslt_stylesheet_manager.o ident.o pa_charset_connection.o \ +pa_charset_manager.o AR = ar CXXFLAGS = @CXXFLAGS@ CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) @@ -115,12 +119,13 @@ DISTFILES = $(DIST_COMMON) $(SOURCES) $( TAR = gtar GZIP_ENV = --best DEP_FILES = .deps/compile.P .deps/compile.tab.P .deps/compile_tools.P \ -.deps/execute.P .deps/pa_array.P .deps/pa_common.P \ -.deps/pa_dictionary.P .deps/pa_dir.P .deps/pa_exception.P \ -.deps/pa_exec.P .deps/pa_globals.P .deps/pa_hash.P .deps/pa_pool.P \ -.deps/pa_request.P .deps/pa_socks.P .deps/pa_sql_driver_manager.P \ -.deps/pa_string.P .deps/pa_table.P .deps/pa_xslt_stylesheet_manager.P \ -.deps/untaint.P +.deps/execute.P .deps/ident.P .deps/pa_array.P \ +.deps/pa_charset_connection.P .deps/pa_charset_manager.P \ +.deps/pa_common.P .deps/pa_dictionary.P .deps/pa_dir.P \ +.deps/pa_exception.P .deps/pa_exec.P .deps/pa_globals.P .deps/pa_hash.P \ +.deps/pa_pool.P .deps/pa_request.P .deps/pa_socks.P \ +.deps/pa_sql_driver_manager.P .deps/pa_string.P .deps/pa_table.P \ +.deps/pa_xslt_stylesheet_manager.P .deps/untaint.P SOURCES = $(libmain_a_SOURCES) OBJECTS = $(libmain_a_OBJECTS) @@ -365,6 +370,12 @@ mostlyclean distclean maintainer-clean compile.tab.C: compile.y bison -v $< -o $@ +ident.C: $(IDENT_AWK) $(IDENT_DEPS) Makefile.am + rm -f ident.C + echo // do not edit. autogenerated by Makefile.am > ident.C.new + cat $(IDENT_DEPS) | $(AWK) -f $(IDENT_AWK) -v project=main >> ident.C.new + mv ident.C.new ident.C + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: