blob: 81cc20c3c9ea1e7fd99d8efdeae9c92b8b3a3496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TARG=nupas.ps nupas.pdf
all:V: $TARG
%.ps:DQ: %.ms
eval `{doctype macros.ms $stem.ms} | \
lp -m.9 -dstdout >$target
%.html:DQ: %.ms
htmlroff -ms -mhtml $stem.ms >$target
%.pdf:DQ: %.ps
cat ../docfonts $stem.ps >_$stem.ps
ps2pdf _$stem.ps $stem.pdf && rm -f _$stem.ps
%.show:VQ: %.ps
page -w $stem.ps
#install:VQ: fs4.man fs.man fsrecover.man fsconfig.man
# cp fs4.man /sys/man/4/fs
# cp fs.man /sys/man/8/fs
# cp fsconfig.man /sys/man/8/fsconfig
# cp fsrecover.man /sys/man/8/fsrecover
|