mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Note: new program, "ndc", similar to gated's gdc. This provides a superset of named.reload and named.restart.
22 lines
488 B
Makefile
22 lines
488 B
Makefile
# @(#)Makefile 5.1 (Berkeley) 5/28/90
|
|
|
|
MAN8= named.reload.8
|
|
CLEANFILES+=named.reload
|
|
|
|
PIDDIR=/var/run
|
|
INDOT=
|
|
DESTSBIN=${DESTDIR}${BINDIR}
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
|
|
named.reload ${DESTDIR}${BINDIR}
|
|
|
|
all: named.reload
|
|
|
|
named.reload: named.reload.sh Makefile
|
|
sed -e "s|%DESTSBIN%|${DESTSBIN}|" \
|
|
-e "s|%INDOT%|${INDOT}|" \
|
|
< ${.CURDIR}/named.reload.sh > named.reload
|
|
|
|
.include "${.CURDIR}/../../../Makefile.inc"
|
|
.include <bsd.prog.mk>
|