must rm before ln
[unix-history] / usr / src / usr.bin / plot / Makefile
CommitLineData
44838775 1#
5bc8be67 2# Makefile 4.2 83/03/24
44838775 3#
78dbb427
RC
4all: tek t300 t300s t450 vplot
5
6tek: driver.o
7 cc -o tek driver.o -l4014 -lm
8t300: driver.o
9 cc -o t300 driver.o -l300 -lm
10t300s: driver.o
11 cc -o t300s driver.o -l300s -lm
12t450: driver.o
13 cc -o t450 driver.o -l450 -lm
44838775
RC
14vplot: vplot.c
15 cc -o vplot vplot.c
78dbb427 16
5bc8be67 17install: all
44838775
RC
18 install -s tek ${DESTDIR}/usr/bin
19 install -s t300 ${DESTDIR}/usr/bin
20 install -s t300s ${DESTDIR}/usr/bin
21 install -s t450 ${DESTDIR}/usr/bin
22 install -s vplot ${DESTDIR}/usr/bin
23 install -c plot.sh ${DESTDIR}/usr/bin/plot
78dbb427 24clean:
44838775 25 rm -f *.o tek t300 t300s t450 vplot