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