21 lines
396 B
Makefile
21 lines
396 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2004/05/18 00:06:58 christos Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= rndc
|
|
SRCS= rndc.c util.c
|
|
MAN= rndc.8 rndc.conf.5
|
|
BINDIR= /usr/sbin
|
|
|
|
.include "${.CURDIR}/../Makefile.inc"
|
|
|
|
DIST=${IDIST}/bin/rndc
|
|
CPPFLAGS+= -I${DIST}/include \
|
|
-DRNDC_CONFFILE=\"${SYSCONFDIR}/rndc.conf\" \
|
|
-DRNDC_KEYFILE=\"${SYSCONFDIR}/rndc.key\" \
|
|
|
|
|
|
.PATH: ${DIST}
|
|
|
|
.include <bsd.prog.mk>
|