blob: a5c2f6cf9b9e86e8694dc7dc166569849d5fbf4b (
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
51
52
53
|
</$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
}
test:VQ:
# nothing
|