diff options
Diffstat (limited to 'share/doc')
-rw-r--r-- | share/doc/Makefile | 6 | ||||
-rw-r--r-- | share/doc/bind9/Makefile | 22 |
2 files changed, 27 insertions, 1 deletions
diff --git a/share/doc/Makefile b/share/doc/Makefile index 20fe279..7876ae8 100644 --- a/share/doc/Makefile +++ b/share/doc/Makefile @@ -1,7 +1,11 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/5/93 # $FreeBSD$ -SUBDIR= IPv6 papers psd smm usd +SUBDIR= IPv6 ${_bind9} papers psd smm usd + +.if !defined(NO_BIND) +_bind9= bind9 +.endif # Default output format for troff documents is ascii. # To generate postscript versions of troff documents, use: diff --git a/share/doc/bind9/Makefile b/share/doc/bind9/Makefile new file mode 100644 index 0000000..6fe2bc6 --- /dev/null +++ b/share/doc/bind9/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +BIND_DIR= ${.CURDIR}/../../../contrib/bind9 +SRCDIR= ${BIND_DIR}/doc + +.PATH: ${BIND_DIR} ${SRCDIR}/arm ${SRCDIR}/misc + +NOOBJ= noobj + +FILESGROUPS= TOP ARM MISC +TOP= CHANGES COPYRIGHT FAQ KNOWN_DEFECTS README +TOPDIR= ${DOCDIR}/bind9 +ARM= Bv9ARM.ch01.html Bv9ARM.ch02.html Bv9ARM.ch03.html \ + Bv9ARM.ch04.html Bv9ARM.ch05.html Bv9ARM.ch06.html \ + Bv9ARM.ch07.html Bv9ARM.ch08.html Bv9ARM.ch09.html \ + Bv9ARM.html +ARMDIR= ${TOPDIR}/arm +MISC= dnssec format-options.pl ipv6 migration migration-4to9 \ + options rfc-compliance roadmap sdb +MISCDIR= ${TOPDIR}/misc + +.include <bsd.prog.mk> |