Research V7 development
[unix-history] / usr / src / cmd / plot / makefile
CommitLineData
95af7ab2
KT
1CFLAGS = -n -O -s
2
3all: tek t300 t300s t450 vplot
4 :
5
6cp: all
7 cp tek t300 t300s t450 vplot /bin
8 rm tek t300 t300s t450 vplot driver.o
9
10cmp: all
11 cmp tek /bin/tek
12 rm tek
13 cmp t300 /bin/t300
14 rm t300
15 cmp t300s /bin/t300s
16 rm t300s
17 cmp t450 /bin/t450
18 rm t450
19 cmp vplot /bin/vplot
20 rm vplot
21 rm -f driver.o
22
23tek: driver.o
24 cc -n -s -o tek driver.o -lt4014 -lm
25t300: driver.o
26 cc -n -s -o t300 driver.o -lt300 -lm
27t300s: driver.o
28 cc -n -s -o t300s driver.o -lt300s -lm
29t450: driver.o
30 cc -n -s -o t450 driver.o -lt450 -lm
31
32vplot: chrtab.o vplot.o
33 cc -n -s -o vplot vplot.o chrtab.o
34 rm vplot.o chrtab.o