1 # $NetBSD: Makefile,v 1.3 2024/02/21 22:50:56 christos Exp $ 2 3 .include <bsd.init.mk> 4 5 PROG= rndc 6 SRCS= rndc.c util.c 7 MAN= rndc.8 rndc.conf.5 8 BINDIR= /usr/sbin 9 10 DIST=${IDIST}/bin/rndc 11 CPPFLAGS+= -I${DIST}/include \ 12 -DRNDC_CONFFILE=\"${SYSCONFDIR}/rndc.conf\" \ 13 -DRNDC_KEYFILE=\"${SYSCONFDIR}/rndc.key\" \ 14 15 .PATH: ${DIST} ${IDIST}/doc/man 16 17 .include <bsd.prog.mk> 18