Bell 32V release
[unix-history] / usr / src / cmd / plot / Makefile
CommitLineData
ca75c013
TL
1all: tek t300 t300s t450 vplot
2
3tek: driver.o
4 cc -o tek driver.o -l4014 -lm
5t300: driver.o
6 cc -o t300 driver.o -l300 -lm
7t300s: driver.o
8 cc -o t300s driver.o -l300s -lm
9t450: driver.o
10 cc -o t450 driver.o -l450 -lm
11vplot: chrtab.o vplot.o
12 cc -o vplot vplot.o chrtab.o
13
14install:
15 install -s tek $(DESTDIR)/usr/bin
16 install -s t300 $(DESTDIR)/usr/bin
17 install -s t300s $(DESTDIR)/usr/bin
18 install -s t450 $(DESTDIR)/usr/bin
19 install -s vplot $(DESTDIR)/usr/bin
20 install -c plot.sh $(DESTDIR)/usr/bin/plot
21clean:
22 rm -f *.o tek t300 t300s t450