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

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