summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoritojun <itojun@NetBSD.org>2000-04-28 06:21:20 +0000
committeritojun <itojun@NetBSD.org>2000-04-28 06:21:20 +0000
commit5d5dd022cba2d7faefaf0c66eac09ae604f58c8a (patch)
tree0a92131c0ce3451c997deb55ac30a7bd51f526c4
parentbe16012135c446d5dd5657b757dd9ab724de6ca6 (diff)
add bind operators guide into share/doc/smm/10.named. PR 9996.
-rw-r--r--distrib/sets/lists/misc/mi21
-rw-r--r--usr.sbin/bind/Makefile4
-rw-r--r--usr.sbin/bind/doc/Makefile5
-rw-r--r--usr.sbin/bind/doc/bog/Makefile23
4 files changed, 50 insertions, 3 deletions
diff --git a/distrib/sets/lists/misc/mi b/distrib/sets/lists/misc/mi
index 8fdf1646c23..f0bdae3c730 100644
--- a/distrib/sets/lists/misc/mi
+++ b/distrib/sets/lists/misc/mi
@@ -1,4 +1,4 @@
-# $NetBSD: mi,v 1.29 2000/02/20 03:26:16 mycroft Exp $
+# $NetBSD: mi,v 1.30 2000/04/28 06:21:22 itojun Exp $
./usr/share/dict/README
./usr/share/dict/eign
./usr/share/dict/propernames
@@ -132,6 +132,25 @@
./usr/share/doc/smm/08.sendmailop/op.me
./usr/share/doc/smm/09.sendmail/Makefile
./usr/share/doc/smm/09.sendmail/intro.me
+./usr/share/doc/smm/10.named/00macs.me
+./usr/share/doc/smm/10.named/00title.me
+./usr/share/doc/smm/10.named/Makefile
+./usr/share/doc/smm/10.named/ack.me
+./usr/share/doc/smm/10.named/build.me
+./usr/share/doc/smm/10.named/files.me
+./usr/share/doc/smm/10.named/intro.me
+./usr/share/doc/smm/10.named/manage.me
+./usr/share/doc/smm/10.named/named.boot.cache
+./usr/share/doc/smm/10.named/named.boot.primary
+./usr/share/doc/smm/10.named/named.boot.secondary
+./usr/share/doc/smm/10.named/named.local
+./usr/share/doc/smm/10.named/ns.me
+./usr/share/doc/smm/10.named/resolv.conf
+./usr/share/doc/smm/10.named/root.cache
+./usr/share/doc/smm/10.named/setup.me
+./usr/share/doc/smm/10.named/types.me
+./usr/share/doc/smm/10.named/ucbhosts
+./usr/share/doc/smm/10.named/ucbhosts.rev
./usr/share/doc/smm/11.timedop/Makefile
./usr/share/doc/smm/11.timedop/timed.ms
./usr/share/doc/smm/12.timed/Makefile
diff --git a/usr.sbin/bind/Makefile b/usr.sbin/bind/Makefile
index eafc0383037..24d32192e58 100644
--- a/usr.sbin/bind/Makefile
+++ b/usr.sbin/bind/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.3 1999/11/21 16:55:23 veego Exp $
+# $NetBSD: Makefile,v 1.4 2000/04/28 06:21:20 itojun Exp $
SUBDIR= lib dig dnskeygen dnsquery host named named-bootconf named-xfer \
- ndc nslookup nsupdate reload restart
+ ndc nslookup nsupdate reload restart doc
all-dig all-dnskeygen all-dnsquery all-host all-named all-named-xfer \
all-ndc all-nslookup all-nsupdate: all-lib
diff --git a/usr.sbin/bind/doc/Makefile b/usr.sbin/bind/doc/Makefile
new file mode 100644
index 00000000000..dca3b5f23e5
--- /dev/null
+++ b/usr.sbin/bind/doc/Makefile
@@ -0,0 +1,5 @@
+# $NetBSD: Makefile,v 1.1 2000/04/28 06:21:21 itojun Exp $
+
+SUBDIR= bog
+
+.include <bsd.subdir.mk>
diff --git a/usr.sbin/bind/doc/bog/Makefile b/usr.sbin/bind/doc/bog/Makefile
new file mode 100644
index 00000000000..e835537cc78
--- /dev/null
+++ b/usr.sbin/bind/doc/bog/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.1 2000/04/28 06:21:21 itojun Exp $
+
+DIST= ${.CURDIR}/../../../../dist
+.PATH: ${DIST}/bind/doc/bog
+
+DIR= smm/10.named
+SRCS= 00macs.me 00title.me intro.me ns.me types.me\
+ files.me named.boot.primary\
+ named.boot.secondary named.boot.cache resolv.conf\
+ root.cache named.local ucbhosts.rev ucbhosts \
+ setup.me manage.me build.me ack.me
+MACROS= -me
+RM= rm -f
+CLEANFILES+= bog.ps
+ROFF= nroff ${MACROS}
+
+all: bog.ps
+
+bog.ps: ${SRCS}
+ ${RM} ${.TARGET}
+ ${TBL} ${.ALLSRC} | ${ROFF} >${.TARGET}
+
+.include <bsd.doc.mk>