xref: /netbsd-src/external/mpl/bind/bin/rndc/Makefile (revision 33881f779a77dce6440bdc44610d94de75bebefe)
1#	$NetBSD: Makefile,v 1.1 2018/08/12 13:02:26 christos Exp $
2
3.include <bsd.own.mk>
4
5PROG=	rndc
6SRCS=	rndc.c util.c
7MAN=	rndc.8 rndc.conf.5
8BINDIR=	/usr/sbin
9
10.include "${.CURDIR}/../Makefile.inc"
11
12DIST=${IDIST}/bin/rndc
13CPPFLAGS+= -I${DIST}/include \
14        -DRNDC_CONFFILE=\"${SYSCONFDIR}/rndc.conf\" \
15	-DRNDC_KEYFILE=\"${SYSCONFDIR}/rndc.key\" \
16
17rndc.o: ${VERSIONFILE}
18
19.PATH: ${DIST}
20
21.include <bsd.prog.mk>
22