diff options
author | bde <bde@FreeBSD.org> | 1998-08-02 14:00:39 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-02 14:00:39 +0000 |
commit | 2f98cd2d0f22776459160aa28df52c6730bb7474 (patch) | |
tree | 52f42ebc3651c8aef1c79340e26d06c5703e36df /share | |
parent | 09797423d9ca7b52f7d4023cc11d4d22560fcdc2 (diff) | |
download | FreeBSD-src-2f98cd2d0f22776459160aa28df52c6730bb7474.zip FreeBSD-src-2f98cd2d0f22776459160aa28df52c6730bb7474.tar.gz |
Don't use `::' to break dependencies. Cleaned some nearby things.
Diffstat (limited to 'share')
-rw-r--r-- | share/doc/usd/13.viref/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/share/doc/usd/13.viref/Makefile b/share/doc/usd/13.viref/Makefile index c8caeda..cf4b99b 100644 --- a/share/doc/usd/13.viref/Makefile +++ b/share/doc/usd/13.viref/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 8.16 (Berkeley) 8/15/94 -# $Id$ +# $Id: Makefile,v 1.6 1997/02/22 13:06:31 peter Exp $ VOLUME= usd/13.viref SRCS= vi.ref @@ -12,11 +12,10 @@ USE_SOELIMPP= yes USE_TBL= yes SRCDIR= ${.CURDIR}/../../../../contrib/nvi/docs/USD.doc/vi.ref -index.so:: ${SRCS} ${EXTRA} -ALLSRCS= ${SRCS:S;^;${SRCDIR}/;} -index.so:: ${SRCS} - # Build index.so, side-effect of building the paper. - ${SOELIMPP} -e 's:^\.so index.so$$::' ${ALLSRCS} | ${ROFF} > /dev/null +# Build index.so as a side-effect of building the paper. +index.so: ${SRCS} ${EXTRA} + ${SOELIMPP} -e 's:^\.so index.so$$::' ${SRCS:S;^;${SRCDIR}/;} | \ + ${ROFF} > /dev/null sed -e 's/MINUSSIGN/\\-/' \ -e 's/DOUBLEQUOTE/""/' \ -e "s/SQUOTE/'/" \ |