new template
[unix-history] / usr / src / usr.bin / plot / Makefile
CommitLineData
120e0954 1# Makefile 4.10 87/06/18
44838775 2#
e1cc67d3 3CFLAGS= -O
52ab2a74 4ALL= tek t4013 t300 t300s t450 aedplot bgplot crtplot dumbplot gigiplot \
338bc554 5 hpplot hp7221plot implot atoplot plottoa grnplot
e1cc67d3 6
b784522f 7all: ${ALL} debug
78dbb427
RC
8
9tek: driver.o
10 cc -o tek driver.o -l4014 -lm
e1cc67d3 11
52ab2a74
JK
12t4013: driver.o
13 cc -o t4013 driver.o -l4013 -lm
14
78dbb427
RC
15t300: driver.o
16 cc -o t300 driver.o -l300 -lm
e1cc67d3 17
78dbb427
RC
18t300s: driver.o
19 cc -o t300s driver.o -l300s -lm
e1cc67d3 20
78dbb427
RC
21t450: driver.o
22 cc -o t450 driver.o -l450 -lm
e1cc67d3 23
56c27552
RC
24aedplot: driver.o
25 cc -o aedplot driver.o -lplotaed
26
27bgplot: driver.o
28 cc -o bgplot driver.o -lplotbg -lm
29
30crtplot: crtdriver.o crtplot.o
31 cc -o crtplot crtdriver.o crtplot.o -lcurses -ltermcap -lm
32
33dumbplot: driver.o
34 cc -o dumbplot driver.o -lplotdumb -ltermcap -lm
35
36gigiplot: driver.o
37 cc -o gigiplot driver.o -lplotgigi -lm
38
39hpplot: driver.o
40 cc -o hpplot driver.o -lplot2648 -lm
41
42hp7221plot: driver.o
43 cc -o hp7221plot driver.o -lplot7221 -lm
44
f6695ed0
SL
45implot: driver.o
46 cc -o implot driver.o -lplotimagen -lm
47
56c27552
RC
48atoplot: atoplot.o
49 cc -o atoplot atoplot.o -lplot -lm
50
51plottoa: plottoa.o
52 cc -o plottoa plottoa.o
53
338bc554
KS
54grnplot: driver.o
55 cc -o grnplot driver.o -lplotgrn -lm
56
56c27552
RC
57debug: debug.o
58 cc -o debug debug.o
78dbb427 59
5bc8be67 60install: all
b784522f
KM
61 -for i in ${ALL}; do \
62 (install -s $$i ${DESTDIR}/usr/bin/$$i); done
44838775 63 install -c plot.sh ${DESTDIR}/usr/bin/plot
56c27552 64
78dbb427 65clean:
e1cc67d3 66 rm -f *.o ${ALL} a.out core errs
a8629c9c
KB
67
68depend: