--- parser3/src/classes/Makefile.am 2001/05/03 13:13:21 1.7 +++ parser3/src/classes/Makefile.am 2003/07/24 11:31:19 1.41 @@ -1,19 +1,18 @@ -# $Id: Makefile.am,v 1.7 2001/05/03 13:13:21 paf Exp $ +SUBDIRS = gd smtp +INCLUDES = -I../types -I../sql -I../lib/pcre -I../lib/gc/include -I../lib/cord/include -Igd @XML_INCLUDES@ -I../lib/md5 -SUBDIRS = gd - -INCLUDES = -I../include -I../types -I../sql -Igd -I../pcre - -CLASSES_INC=classes.inc +noinst_LIBRARIES = libclasses.a +noinst_HEADERS = classes.h xnode.h +libclasses_a_SOURCES = double.C file.C form.C image.C int.C mail.C op.C math.C response.C string.C table.C void.C hash.C date.C xnode.C xdoc.C classes.C memory.C -$(CLASSES_INC): $(METHODED) classes.awk - echo "/* do not edit. autogenerated by Makefile.am */" > $(CLASSES_INC) - echo >> $(CLASSES_INC) - ls | $(AWK) -f classes.awk >> $(CLASSES_INC) +CLASSES_INC_DEPS = *.C -METHODED=double.C file.C form.C image.C int.C mail.C op.C random.C response.C string.C table.C unknown.C +classes.inc: classes.awk $(CLASSES_INC_DEPS) Makefile.am + echo "/* do not edit. autogenerated by Makefile.am */" > classes.inc + echo >> classes.inc + ls $(CLASSES_INC_DEPS) | $(AWK) -f classes.awk >> classes.inc +CLEANFILES = classes.inc -noinst_LIBRARIES = libclasses.a -libclasses_a_DEPENDENCES = $(CLASSES_INC) -libclasses_a_SOURCES = classes.C $(METHODED) +classes.C: classes.inc +EXTRA_DIST = classes.dsp