Now chooses between Vax and Pdp conversion.
This commit is contained in:
parent
eeb944f6e3
commit
d32de5df93
1 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,14 @@ CFLAGS=-O
|
||||||
pmcv: pmcv.o
|
pmcv: pmcv.o
|
||||||
$(CC) -o pmcv -n pmcv.o
|
$(CC) -o pmcv -n pmcv.o
|
||||||
|
|
||||||
|
pmcv.c:
|
||||||
|
case `ack_sys` in \
|
||||||
|
vax*) cp vax_cv.c pmcv.c ;; \
|
||||||
|
pdp*) cp pdp_cv.c pmcv.c ;; \
|
||||||
|
*) echo "A conversion program should be present in `pwd`/pmcv.c" ;\
|
||||||
|
exit 9 ;; \
|
||||||
|
esac
|
||||||
|
|
||||||
install: ins_pmcv
|
install: ins_pmcv
|
||||||
ins_pmcv: pmcv
|
ins_pmcv: pmcv
|
||||||
../../install pmcv
|
../../install pmcv
|
||||||
|
|
Loading…
Reference in a new issue