diff options
author | peter <peter@FreeBSD.org> | 1998-05-03 05:14:04 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-05-03 05:14:04 +0000 |
commit | 6222ef77b8bbb70ae70b47ceaa9d370e7716a6f9 (patch) | |
tree | 9fb59f76240efc0104e7269c4d1521fc82f0781a /usr.sbin/ndc/Makefile | |
parent | 3f861866b3cb1fcc04282e2e87a89161e9f42589 (diff) | |
download | FreeBSD-src-6222ef77b8bbb70ae70b47ceaa9d370e7716a6f9.zip FreeBSD-src-6222ef77b8bbb70ae70b47ceaa9d370e7716a6f9.tar.gz |
Update for bind-8. Also use /proc in preference to the (seemingly) always
broken ps(1).
Diffstat (limited to 'usr.sbin/ndc/Makefile')
-rw-r--r-- | usr.sbin/ndc/Makefile | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/usr.sbin/ndc/Makefile b/usr.sbin/ndc/Makefile index 732ea65..a68671e 100644 --- a/usr.sbin/ndc/Makefile +++ b/usr.sbin/ndc/Makefile @@ -1,25 +1,22 @@ -# $Id$ +# $Id: Makefile,v 1.4 1997/02/22 16:08:18 peter Exp $ .include "${.CURDIR}/../named/Makefile.inc" -.PATH: ${BIND_DIR}/named -.PATH: ${BIND_DIR}/man +.PATH: ${BIND_DIR}/bin/ndc +.PATH: ${BIND_DIR}/doc/man +PROG= ndc +STRIP= MAN8= ndc.8 + CLEANFILES+= ndc all: ndc -realinstall: - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ndc \ - ${DESTDIR}${BINDIR} - -ndc: ndc.sh ndcedit.awk ${BIND_DIR}/Makefile - sed -e "s|%PIDDIR%|${PIDDIR}|" \ - -e "s|%INDOT%|${INDOT}|" \ +ndc: ndc.sh ndcedit.awk ${.CURDIR}/../../usr.sbin/named/Makefile.inc + sed -e "s|%PIDFILE%|${PIDDIR}/named.pid|" \ + -e "s|%NAMED%|named|" \ -e "s|%PS%|${PS}|" \ - -e "s|%DESTSBIN%|${DESTSBIN}|" \ - -e "s|%IOT%|${IOT}|" \ - < ${BIND_DIR}/named/ndc.sh | awk -f ${.CURDIR}/ndcedit.awk > ndc + < ${BIND_DIR}/bin/ndc/ndc.sh | awk -f ${.CURDIR}/ndcedit.awk > ndc .include <bsd.prog.mk> |