fd01cb6244
with this configuration, but Ruslan tells me that I was probably mistaken, and on retest the .5 pages are being installed just fine. Therefore reverse the MAN[58] change in favor of the more modern syntax. Submitted by: ru
29 lines
629 B
Makefile
29 lines
629 B
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../contrib/bind9
|
|
LIB_BIND_REL= ../../lib/bind
|
|
LIB_BIND_DIR= ${.CURDIR}/${LIB_BIND_REL}
|
|
SRCDIR= ${BIND_DIR}/bin/rndc
|
|
|
|
.include "${LIB_BIND_DIR}/config.mk"
|
|
|
|
PROG= rndc
|
|
|
|
.PATH: ${SRCDIR}/unix
|
|
SRCS+= os.c
|
|
|
|
.PATH: ${SRCDIR}
|
|
SRCS+= rndc.c util.c
|
|
|
|
CFLAGS+= -I${SRCDIR}/unix/include -I${SRCDIR}/include -I${LIB_BIND_DIR}
|
|
|
|
DPADD+= ${BIND_DPADD} ${CRYPTO_DPADD} ${PTHREAD_DPADD}
|
|
LDADD+= ${BIND_LDADD} ${CRYPTO_LDADD} ${PTHREAD_LDADD}
|
|
|
|
MAN= rndc.8 rndc.conf.5
|
|
|
|
MANFILTER= sed -e "s@/etc/rndc\.conf@/etc/namedb/rndc.conf@g" \
|
|
-e "s@/etc/rndc\.key@/etc/namedb/rndc.key@g"
|
|
|
|
.include <bsd.prog.mk>
|