--- parser3/src/classes/Makefile.am 2001/04/28 14:48:15 1.4 +++ parser3/src/classes/Makefile.am 2001/05/03 13:13:21 1.7 @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.4 2001/04/28 14:48:15 paf Exp $ +# $Id: Makefile.am,v 1.7 2001/05/03 13:13:21 paf Exp $ SUBDIRS = gd @@ -6,11 +6,14 @@ INCLUDES = -I../include -I../types -I../ CLASSES_INC=classes.inc +$(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) + +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 + noinst_LIBRARIES = libclasses.a libclasses_a_DEPENDENCES = $(CLASSES_INC) -libclasses_a_SOURCES = double.C exec.C file.C form.C image.C int.C mail.C op.C random.C response.C string.C table.C unknown.C +libclasses_a_SOURCES = classes.C $(METHODED) -$(CLASSES_INC): $(libclasses_a_SOURCES) classes.awk - echo /* do not edit. autogenerated by Makefile.am */ > $(CLASSES_INC) - echo >> $(CLASSES_INC) - ls | $(AWK) -f classes.awk >> $(CLASSES_INC)