blob: 45c7ea84d6361cbc121ff6f258558d72d0213fcf (
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
|
</sys/doc/fonts
DEPS = net.ms\
tree.pout
net.ps:D: $DEPS
{ echo $FONTS; cat net.ms } | tbl | troff -ms | lp -dstdout > net.ps
../cleanps net.ps
net.trout:D: $DEPS
{ echo $FONTS; cat net.ms } | tbl | troff -ms > net.trout
tree.pout:D: tree
pic tree > tree.pout
net.html:D: $DEPS
tbl net.ms | htmlroff -ms -mhtml >net.html
%.pdf:D: %.ps
cat ../docfonts $stem.ps >_$stem.ps
# distill _$stem.ps && mv _$stem.pdf $stem.pdf
ps2pdf _$stem.ps $stem.pdf && rm -f _$stem.ps
clean:V:
rm -f net.ps tree.pout net.trout
|