blob: 7b9f4b3c0497d4e8c5adc763e76abb5648052c58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
</$objtype/mkfile
<config
#
# $(TARGETS) is the default list of things built by make.
#
# buildtables
TARGETS=common\
cropmarks\
download\
grabit\
hardcopy\
mpictures\
postgif\
postprint\
postreverse\
posttek\
printfont\
psencoding\
psfiles\
g3p9bit\
p9bitpost\
tcpostio\
text2post\
tr2post
# UNIX remnants
# trofftable\
# picpack\
# postbgi\
# postdaisy\
# postdmd\
# postmd
# postio
default:V: all
$TARGETS:V:
cd $target
mk all
&:VQ:
test -d $POSTBIN || mkdir $POSTBIN
for (i in $TARGETS) @{
echo ---- Making $target in $i ----;
cd $i;
mk $target
}
|