1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-15 15:06:42 +00:00

Enable new bind utilities.

This commit is contained in:
Paul Traina 1994-09-26 23:14:33 +00:00
parent f64c928f58
commit 5517824990
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3137
5 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
# From: @(#)Makefile 8.3 (Berkeley) 1/7/94
# $Id: Makefile,v 1.20 1994/09/22 01:26:58 wollman Exp $
# $Id: Makefile,v 1.21 1994/09/23 00:00:57 ache Exp $
# XXX MISSING: bc dc deroff diction diff ex graph learn plot
# ptx spell spline struct units xsend
@ -10,9 +10,9 @@
#
SUBDIR= apply ar at banner basename biff cal calendar \
cap_mkdb checknr chflags chpass cksum col colcrt colrm column \
comm compress cpp ctags cut dirname du \
comm compress cpp ctags cut dig dirname du \
env error expand f2c false file find finger fmt fold fpr from \
fsplit fstat ftp gcore gprof head hexdump id indent ipcrm ipcs \
fsplit fstat ftp gcore gprof head hexdump host id indent ipcrm ipcs \
join jot kdump ktrace key keyinfo keyinit lam last \
lastcomm leave lex locate lock logger login logname lorder \
lsvfs m4 mail make mesg mkdep mkfifo mklocale mkstr modstat \

View File

@ -6,7 +6,7 @@
SUBDIR= ac accton amd arp bootpd bootpef bootpgw bootptest chown chroot \
cron crunch dbsym dev_mkdb diskpart edquota fdformat fdwrite \
inetd kbdcontrol kgmon kvm_mkdb lpr lptcontrol \
manctl mtree mrouted pkg_install portmap pstat \
manctl mtree mrouted named nslookup pkg_install portmap pstat \
pwd_mkdb quotaon repquota routed rmt rtprio rwhod sa sendmail \
sliplogin sysctl syslogd tcpdump traceroute trpt tzsetup vidcontrol \
vipw xntpd ypbind yppoll ypset zic

View File

@ -56,7 +56,7 @@
## --Copyright--
PROG= named
MAN8= named.8 named.restart.8 named.reload.8
MAN8= named.8
LDADD= -lutil
SRCS= db_dump.c db_load.c db_lookup.c db_reload.c db_save.c db_update.c \
db_secure.c db_glue.c \

View File

@ -8,11 +8,11 @@ INDOT=
beforeinstall: named.reload
install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
${.CURDIR}/named.reload ${DESTDIR}${BINDIR}
named.reload ${DESTDIR}${BINDIR}
named.reload: named.reload.sh Makefile
sed -e "s|%PIDDIR%|${PIDDIR}|" \
< named.reload.sh > named.reload
< ${.CURDIR}/named.reload.sh > named.reload
.include "${.CURDIR}/../../../Makefile.inc"
.include <bsd.prog.mk>

View File

@ -8,13 +8,13 @@ INDOT=
beforeinstall: named.restart
install -c -o ${BINOWN} -g ${BINGRP} -m 555 \
${.CURDIR}/named.restart ${DESTDIR}${BINDIR}
named.restart ${DESTDIR}${BINDIR}
named.restart: named.restart.sh Makefile
sed -e "s|%PIDDIR%|${PIDDIR}|" \
-e "s|%INDOT%|${INDOT}|" \
-e "s|%DESTSBIN%|${BINDIR}|" \
< named.restart.sh > named.restart
< ${.CURDIR}/named.restart.sh > named.restart
.include "${.CURDIR}/../../../Makefile.inc"
.include <bsd.prog.mk>