From: ceriel Date: Thu, 5 Sep 1991 11:10:43 +0000 (+0000) Subject: new installation mechanism X-Git-Tag: release-5-5~938 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a2fc0c859ca20ad032f462bf198ba880b8c04eb4;p=ack.git new installation mechanism --- 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