Now chooses between Vax and Pdp conversion.
This commit is contained in:
parent
eeb944f6e3
commit
d32de5df93
|
@ -3,6 +3,14 @@ CFLAGS=-O
|
|||
pmcv: 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
|
||||
ins_pmcv: pmcv
|
||||
../../install pmcv
|
||||
|
|
Loading…
Reference in a new issue