mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
Don't use `::' to break dependencies. Cleaned some nearby things.
This commit is contained in:
parent
0b7162ffcc
commit
98426f5632
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38015
@ -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/'/" \
|
||||
|
Loading…
Reference in New Issue
Block a user