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