HardenedBSD/usr.sbin/named/tools/named.reload/Makefile

23 lines
488 B
Makefile
Raw Normal View History

1994-09-22 22:45:34 +02:00
# @(#)Makefile 5.1 (Berkeley) 5/28/90
MAN8= named.reload.8
CLEANFILES+=named.reload
PIDDIR=/var/run
INDOT=
DESTSBIN=${DESTDIR}${BINDIR}
1994-09-22 22:45:34 +02:00
beforeinstall:
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
1994-09-27 00:14:33 +01:00
named.reload ${DESTDIR}${BINDIR}
1994-09-22 22:45:34 +02:00
all: named.reload
1994-09-22 22:45:34 +02:00
named.reload: named.reload.sh Makefile
sed -e "s|%DESTSBIN%|${DESTSBIN}|" \
-e "s|%INDOT%|${INDOT}|" \
1994-09-27 00:14:33 +01:00
< ${.CURDIR}/named.reload.sh > named.reload
1994-09-22 22:45:34 +02:00
.include "${.CURDIR}/../../../Makefile.inc"
.include <bsd.prog.mk>