improved: did not work with SunOs 4.0 make

This commit is contained in:
ceriel 1989-10-16 09:32:05 +00:00
parent d7e23d9466
commit 7f6b39f155
2 changed files with 4 additions and 3 deletions

View file

@ -11,7 +11,7 @@ IFILES = -I$(EM)/h -I$(EM)/modules/h
CC = cc
CFLAGS = $(IFILES)
all : dummy
all : dummy $(OFILES)
make $(OFILES)
dummy : $(GFILES)

View file

@ -17,8 +17,9 @@ LEXLIB = -ll
all: as_parser eval/eval
as_parser : dummy $(OFILES)
$(CC) -o as_parser $(OFILES) $(LIBS) $(LEXLIB)
as_parser: dummy $(OFILES)
make $(OFILES)
$(CC) -o as_parser $(OFILES) $(LIBS) $(LEXLIB)
eval/eval:
( cd eval ; make eval )