new tempalte
[unix-history] / usr / src / lib / libplot / Makefile
CommitLineData
35378dd8 1# Makefile 4.12 87/06/19
738da2ff 2#
5070d2b6 3ALL= libf77plot libplot lib300 lib300s lib4013 lib4014 lib450 libvt0 \
5517f37a 4 libplotaed libplotbg libplotdumb libplotgigi libplot2648 \
887d93ef 5 libplot7221 libplotimagen libplotgrn
5070d2b6 6SUBDIRS=tf77 plot t4013 t4014 t300 t300s t450 vt0 \
887d93ef 7 aed bitgraph dumb gigi hp2648 hp7221 imagen grn
08ae617f
SL
8
9all: ${ALL}
738da2ff 10
5070d2b6
SL
11libf77plot: FRC
12 cd tf77; make ${MFLAGS}
13
9b0b4566 14libplot: FRC
738da2ff
SL
15 cd plot; make ${MFLAGS}
16
5070d2b6
SL
17lib4013: FRC
18 cd t4013; make ${MFLAGS}
19
acb87785 20lib4014: FRC
738da2ff
SL
21 cd t4014; make ${MFLAGS}
22
acb87785 23lib300: FRC
738da2ff
SL
24 cd t300; make ${MFLAGS}
25
acb87785 26lib300s: FRC
738da2ff
SL
27 cd t300s; make ${MFLAGS}
28
acb87785 29lib450: FRC
738da2ff
SL
30 cd t450; make ${MFLAGS}
31
9b0b4566 32libvt0: FRC
738da2ff
SL
33 cd vt0; make ${MFLAGS}
34
50c5f98d
RC
35libplotaed: FRC
36 cd aed; make ${MFLAGS}
37
38libplotbg: FRC
39 cd bitgraph; make ${MFLAGS}
40
41libplotdumb: FRC
42 cd dumb; make ${MFLAGS}
43
44libplotgigi: FRC
45 cd gigi; make ${MFLAGS}
46
47libplot2648: FRC
48 cd hp2648; make ${MFLAGS}
49
50libplot7221: FRC
51 cd hp7221; make ${MFLAGS}
52
9cc57cc6 53libplotimagen: FRC
5517f37a
SL
54 cd imagen; make ${MFLAGS}
55
887d93ef
KS
56libplotgrn: FRC
57 cd grn; make ${MFLAGS}
58
738da2ff
SL
59FRC:
60
61install: all
62 for i in ${ALL}; do \
9b0b4566
SL
63 install -m 644 $$i ${DESTDIR}/usr/lib/$$i.a; \
64 ranlib ${DESTDIR}/usr/lib/$$i.a; \
738da2ff
SL
65 done
66
67clean:
68 rm -f ${ALL} errs a.out core
5d2d901d 69 for i in ${SUBDIRS}; do \
4e444bd9
SL
70 (cd $$i; make ${MFLAGS} clean); \
71 done