in the PR by removing spurious .HP tags, thereby actually allowing the commands to show up in the man page output, and making the style consistent with the nslookup(1) man page. [1] While I'm here, fix the markup on the first command reference in nslookup(1). PR: docs/98009 [1] Submitted by: Dmitry Kazarov <kazarov@ttk.ru>
23 lines
463 B
Makefile
23 lines
463 B
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../contrib/bind9
|
|
LIB_BIND_REL= ../../lib/bind
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/bin/dig
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
PROG= nslookup
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS+= dighost.c nslookup.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/include
|
|
|
|
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD}
|
|
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD}
|
|
|
|
MANFILTER= sed -e "s@^host \[server\]@\\\fBhost\\\fR \\\fI[server]\\\fR@"
|
|
|
|
.include <bsd.prog.mk>
|