diff --git a/util/ceg/as_parser/eval/.distr b/util/ceg/as_parser/eval/.distr index 413602e83..3c0c6492c 100644 --- a/util/ceg/as_parser/eval/.distr +++ b/util/ceg/as_parser/eval/.distr @@ -1,3 +1,3 @@ -Makefile +proto.make eval.c states.h diff --git a/util/ceg/as_parser/eval/proto.make b/util/ceg/as_parser/eval/proto.make new file mode 100644 index 000000000..4e554d985 --- /dev/null +++ b/util/ceg/as_parser/eval/proto.make @@ -0,0 +1,14 @@ +# $Header$ + +#PARAMS do not remove this line! + +SRC_DIR = $(SRC_HOME)/util/ceg/as_parser/eval + +CFLAGS = $(COPTIONS) +LDFLAGS = $(LDOPTIONS) + +eval: eval.$(SUF) + $(CC) $(LDFLAGS) -o eval eval.$(SUF) + +eval.$(SUF): $(SRC_DIR)/states.h $(SRC_DIR)/eval.c + $(CC) -c $(CFLAGS) $(SRC_DIR)/eval.c