new installation mechanism

This commit is contained in:
ceriel 1991-09-05 11:10:43 +00:00
parent cc4654a716
commit e83c5d93c9
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,3 @@
Makefile
proto.make
eval.c
states.h

View File

@ -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