--- parser3/src/targets/cgi/Makefile.am 2001/03/21 14:06:52 1.2 +++ parser3/src/targets/cgi/Makefile.am 2002/06/12 14:18:05 1.35 @@ -1,7 +1,24 @@ -# $Id: Makefile.am,v 1.2 2001/03/21 14:06:52 paf Exp $ +#this read configure.in comment on stdc++ about next line +if DO_NOT_LINK_LIBSTDCPP +CXXLD=$(CC) +else +CXXLD=$(CXX) +endif -INCLUDES = -I../../include -I../../classes -I../../types +INCLUDES = -I../../classes -I../../types -I../../sql -I../../pcre -I$(INCLTDL) @XML_INCLUDES@ bin_PROGRAMS = parser3 -parser3_SOURCES = pa_pool.C parser3.C -parser3_LDADD = ../../main/libmain.a ../../classes/libclasses.a ../../types/libtypes.a +noinst_HEADERS = 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 ../../classes/gd/libgd.a ../../pcre/libpcre.a $(LIBLTDL) $(LIBADD_DL) @XML_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