--- parser3/src/targets/cgi/Makefile.am 2001/04/23 16:58:22 1.6 +++ parser3/src/targets/cgi/Makefile.am 2002/02/13 13:04:34 1.29 @@ -1,15 +1,20 @@ -# $Id: Makefile.am,v 1.6 2001/04/23 16:58:22 paf Exp $ +#this read configure.in comment on stdc++ about next line +CXXLD=$(CC) -INCLUDES = -I../../include -I../../classes -I../../types -I$(INCLTDL) -I../../sql +INCLUDES = -I../../classes -I../../types -I$(INCLTDL) -I../../sql -I../../pcre @XML_INCLUDES@ bin_PROGRAMS = parser3 -parser3_SOURCES = pa_pool.C parser3.C +noinst_HEADERS = pa_config_paths.h pool_storage.h +parser3_SOURCES = pa_pool.C pa_threads.C parser3.C ident.C +parser3_LDADD=../../main/libmain.a ../../classes/libclasses.a ../../main/libmain.a ../../types/libtypes.a $(LIBLTDL) ../../classes/gd/libgd.a ../../pcre/libpcre.a @XML_LIBS@ @DB2_LIBS@ -parser_common_libs=../../main/libmain.a ../../classes/libclasses.a ../../main/libmain.a ../../types/libtypes.a $(LIBLTDL) ../../classes/gd/libgd.a ../../pcre/libpcre.a -parser_libs = -if WIN32 - parser_libs = $(parser_common_libs) /lib/libwsock32.a -else - parser_libs = $(parser_common_libs) -endif -parser3_LDADD = $(parser_libs) +IDENT_AWK = $(top_srcdir)/src/ident.awk +IDENT_DEPS = *.C + +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=parser3 >> ident.C.new + mv ident.C.new ident.C + +EXTRA_DIST = parser3.dsp