Annotation of parser3/src/classes/Makefile.am, revision 1.29
1.25 parser 1: if COMPILE_XML
1.26 parser 2: PATCHES_SUBDIR=xalan-patched
3: PATCHES_INCLUDES=-I$(PATCHES_SUBDIR)
1.25 parser 4: else
1.26 parser 5: PATCHES_SUBDIR=
6: PATCHES_INCLUDES=
1.25 parser 7: endif
1.2 paf 8:
1.27 parser 9: SUBDIRS = gd $(PATCHES_SUBDIR)
1.26 parser 10:
1.29 ! paf 11: INCLUDES = -I../types -I../sql -I../pcre -Igd $(PATCHES_INCLUDES) @XML_INCLUDES@ @DB2_INCLUDES@
1.2 paf 12:
1.22 parser 13: noinst_LIBRARIES = libclasses.a
1.28 parser 14: libclasses_a_SOURCES = ident.C classes.C 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 hashfile.C
1.22 parser 15: CLEANFILES = classes.inc
16:
17: CLASSES_INC_DEPS = *.C
1.7 paf 18:
1.22 parser 19: classes.inc: classes.awk $(CLASSES_INC_DEPS) Makefile.am
20: echo "/* do not edit. autogenerated by Makefile.am */" > classes.inc
21: echo >> classes.inc
22: ls $(CLASSES_INC_DEPS) | $(AWK) -f classes.awk >> classes.inc
1.7 paf 23:
1.22 parser 24: classes.C: classes.inc
1.4 paf 25:
1.22 parser 26: IDENT_AWK = ../ident.awk
27: IDENT_DEPS = *.awk *.h *.C
28:
29: ident.C: $(IDENT_AWK) $(IDENT_DEPS) Makefile.am
30: rm -f ident.C
31: echo // do not edit. autogenerated by Makefile.am > ident.C.new
32: cat $(IDENT_DEPS) | $(AWK) -f $(IDENT_AWK) -v project=classes >> ident.C.new
33: mv ident.C.new ident.C
E-mail: