installed new Pascal compiler

This commit is contained in:
ceriel 1989-06-08 13:05:21 +00:00
parent 018cf665d8
commit 3b4a813a6c
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
Makefile Makefile
libpc libpc
pem comp
test test

View file

@ -2,18 +2,18 @@ d=../..
h=$d/h h=$d/h
cmp: cmp:
(cd pem ; make cmp) (cd comp ; make cmp)
install: install:
(cd pem ; make install) (cd comp ; make install)
clean: clean:
-rm -f *.o *.old -rm -f *.o *.old
(cd pem ; make clean) (cd comp ; make clean)
opr: opr:
make pr ^ opr make pr ^ opr
pr: pr:
@(cd pem ; make pr) @(cd comp ; make pr)
@(cd libpc ; make pr) @(cd libpc ; make pr)