Initial import from FreeBSD RELENG_4:
[dragonfly.git] / share / doc / usd / 13.viref / Makefile
1 #       From: @(#)Makefile      8.16 (Berkeley) 8/15/94
2 # $FreeBSD: src/share/doc/usd/13.viref/Makefile,v 1.8.2.2 2000/12/01 11:34:38 ru Exp $
3
4 VOLUME= usd/13.viref
5 SRCS=   vi.ref
6 EXTRA=  ex.cmd.roff ref.so set.opt.roff vi.cmd.roff
7 OBJS=   index.so
8 MACROS= -me -U
9 CLEANFILES+=index index.so
10 USE_SOELIM=     yes
11 USE_SOELIMPP=   yes
12 USE_TBL=        yes
13 SRCDIR= ${.CURDIR}/../../../../contrib/nvi/docs/USD.doc/vi.ref
14
15 # Build index.so as a side-effect of building the paper.
16 index.so: ${SRCS} ${EXTRA}
17         (cd ${SRCDIR}; ${SOELIMPP} -e 's:^\.so index.so$$::' ${SRCS}) | \
18         ${ROFF} > /dev/null
19         sed -e 's/MINUSSIGN/-/' \
20             -e 's/DOUBLEQUOTE/""/' \
21             -e "s/SQUOTE/'/" \
22             -e 's/ /__SPACE/g' < index | \
23         sort -u '-t     ' +0 -1 +1n | awk -f ${SRCDIR}/merge.awk | \
24         sed -e 's/__SPACE/ /g' \
25             -e "s/^\\(['\\.]\\)/\\\\\&\\1/" > index.so 
26
27 .include <bsd.doc.mk>