freebsd-dev/contrib/nvi/docs/USD.doc/vi.ref/Makefile
Peter Wemm b8ba871bd9 Import of nvi-1.79, minus a few bits that we dont need (eg: postscript
files, curses, db, regex etc that we already have).  The other glue will
follow shortly.

Obtained from: Keith Bostic <bostic@bostic.com>
1996-11-01 06:45:43 +00:00

33 lines
717 B
Makefile

# @(#)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