today's work
[unix-history] / usr / src / usr.bin / plot / Makefile
CommitLineData
e1cc67d3 1# Makefile 4.3 83/07/04
44838775 2#
e1cc67d3
SL
3CFLAGS= -O
4ALL= tek t300 t300s t450 vplot
5
6all: ${ALL}
78dbb427
RC
7
8tek: driver.o
9 cc -o tek driver.o -l4014 -lm
e1cc67d3 10
78dbb427
RC
11t300: driver.o
12 cc -o t300 driver.o -l300 -lm
e1cc67d3 13
78dbb427
RC
14t300s: driver.o
15 cc -o t300s driver.o -l300s -lm
e1cc67d3 16
78dbb427
RC
17t450: driver.o
18 cc -o t450 driver.o -l450 -lm
e1cc67d3
SL
19
20vplot: vplot.o chrtab.o
21 cc -o vplot vplot.o chrtab.o
78dbb427 22
5bc8be67 23install: all
44838775
RC
24 install -s tek ${DESTDIR}/usr/bin
25 install -s t300 ${DESTDIR}/usr/bin
26 install -s t300s ${DESTDIR}/usr/bin
27 install -s t450 ${DESTDIR}/usr/bin
28 install -s vplot ${DESTDIR}/usr/bin
29 install -c plot.sh ${DESTDIR}/usr/bin/plot
78dbb427 30clean:
e1cc67d3 31 rm -f *.o ${ALL} a.out core errs