84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
35 lines
925 B
Makefile
35 lines
925 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/11/22 16:00:45 christos Exp $
|
|
#
|
|
# @(#)Makefile 8.20 (Berkeley) 8/18/96
|
|
|
|
DIR= usd/13.viref
|
|
SRCS= vi.ref ex.cmd.roff set.opt.roff vi.cmd.roff ref.so
|
|
MACROS= -me
|
|
CLEANFILES+= vi.ref.txt vi.ref.ps index index.so
|
|
|
|
all: vi.ref.txt vi.ref.ps
|
|
|
|
vi.ref.txt: vi.ref index.so
|
|
${TOOL_SOELIM} vi.ref | ${TOOL_TBL} | ${TOOL_ROFF_ASCII} ${MACROS} > $@
|
|
rm -f index
|
|
chmod 444 $@
|
|
|
|
vi.ref.ps: vi.ref index.so
|
|
${TOOL_SOELIM} vi.ref | ${TOOL_TBL} | ${TOOL_ROFF_PS} ${MACROS} > $@
|
|
rm -f index
|
|
chmod 444 $@
|
|
|
|
index.so: vi.ref
|
|
# Build index.so, side-effect of building the paper.
|
|
${TOOL_SOELIM} vi.ref | ${TOOL_TBL} | \
|
|
${TOOL_ROFF_PS} ${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 $@
|
|
|
|
.include <bsd.doc.mk>
|