diff options
Diffstat (limited to 'usr.sbin/bind/named.restart/Makefile')
| -rw-r--r-- | usr.sbin/bind/named.restart/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/usr.sbin/bind/named.restart/Makefile b/usr.sbin/bind/named.restart/Makefile new file mode 100644 index 000000000000..3e7a8e30940b --- /dev/null +++ b/usr.sbin/bind/named.restart/Makefile @@ -0,0 +1,23 @@ +# $Id$ + +.include "${.CURDIR}/../Makefile.inc" + +.PATH: ${BIND_DIR}/named +.PATH: ${BIND_DIR}/man + +BINDIR= ${DESTSBIN} +MAN8= named.restart.8 +CLEANFILES+= named.restart + +all: named.restart + +realinstall: + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} named.restart \ + ${DESTDIR}${BINDIR} + +named.restart: named.restart.sh ${BIND_DIR}/Makefile + sed -e "s|%INDOT%|${INDOT}|" \ + -e "s|%DESTSBIN%|${DESTSBIN}|" \ + < ${BIND_DIR}/named/named.restart.sh > named.restart + +.include <bsd.prog.mk> |
