blob: 0e1b6343350d273efd11097345ad9dc862b95760 (
plain) (
blame)
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
|
# @(#)Makefile 8.20 (Berkeley) 8/18/96
MACROS= -me
ROFF= groff
TBL= tbl
all: vi.ref.txt vi.ref.ps
vi.ref.txt: vi.ref index.so
soelim vi.ref | ${TBL} | groff ${MACROS} -Tascii > $@
rm -f index
chmod 444 $@
vi.ref.ps: vi.ref index.so
soelim vi.ref | ${TBL} | ${ROFF} ${MACROS} > $@
rm -f index
chmod 444 $@
index.so: vi.ref
# Build index.so, side-effect of building the paper.
soelim vi.ref | ${TBL} | ${ROFF} ${MACROS} > /dev/null
sed -e 's/MINUSSIGN/\\-/' \
-e 's/DOUBLEQUOTE/""/' \
-e "s/SQUOTE/'/" \
-e 's/ /__SPACE/g' < index | \
sort -u '-t ' +0 -1 +1n | awk -f merge.awk | \
sed -e 's/__SPACE/ /g' > $@
rm -f index
chmod 444 $@
clean:
rm -f vi.ref.ps vi.ref.txt index index.so
|