improved: did not work with SunOs 4.0 make

This commit is contained in:
ceriel
1989-10-16 09:32:05 +00:00
parent 535ad269a5
commit 54ae1ed869
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 )