date and time created 85/01/02 20:10:47 by jak
[unix-history] / usr / src / lib / libplot / Makefile
CommitLineData
50c5f98d 1# Makefile 4.7 83/11/11
738da2ff 2#
50c5f98d
RC
3ALL= libplot lib300 lib300s lib4014 lib450 libvt0 \
4 libplotaed libplotbg libplotdumb libplotgigi libplot2648 libplot7221
5SUBDIRS=plot t4014 t300 t300s t450 vt0 \
6 aed bitgraph dumb gigi hp2648 hp7221
08ae617f
SL
7
8all: ${ALL}
738da2ff 9
9b0b4566 10libplot: FRC
738da2ff
SL
11 cd plot; make ${MFLAGS}
12
acb87785 13lib4014: FRC
738da2ff
SL
14 cd t4014; make ${MFLAGS}
15
acb87785 16lib300: FRC
738da2ff
SL
17 cd t300; make ${MFLAGS}
18
acb87785 19lib300s: FRC
738da2ff
SL
20 cd t300s; make ${MFLAGS}
21
acb87785 22lib450: FRC
738da2ff
SL
23 cd t450; make ${MFLAGS}
24
9b0b4566 25libvt0: FRC
738da2ff
SL
26 cd vt0; make ${MFLAGS}
27
50c5f98d
RC
28libplotaed: FRC
29 cd aed; make ${MFLAGS}
30
31libplotbg: FRC
32 cd bitgraph; make ${MFLAGS}
33
34libplotdumb: FRC
35 cd dumb; make ${MFLAGS}
36
37libplotgigi: FRC
38 cd gigi; make ${MFLAGS}
39
40libplot2648: FRC
41 cd hp2648; make ${MFLAGS}
42
43libplot7221: FRC
44 cd hp7221; make ${MFLAGS}
45
738da2ff
SL
46FRC:
47
48install: all
49 for i in ${ALL}; do \
9b0b4566
SL
50 install -m 644 $$i ${DESTDIR}/usr/lib/$$i.a; \
51 ranlib ${DESTDIR}/usr/lib/$$i.a; \
738da2ff
SL
52 done
53
54clean:
55 rm -f ${ALL} errs a.out core
5d2d901d 56 for i in ${SUBDIRS}; do \
4e444bd9
SL
57 (cd $$i; make ${MFLAGS} clean); \
58 done