08e6ea976b
Notable new features: * Elliptic Curve Digital Signature Algorithm keys and signatures in DNSSEC are now supported per RFC 6605. [RT #21918] * Introduces a new tool "dnssec-verify" that validates a signed zone, checking for the correctness of signatures and NSEC/NSEC3 chains. [RT #23673] * BIND now recognizes the TLSA resource record type, created to support IETF DANE (DNS-based Authentication of Named Entities) [RT #28989] * The new "inline-signing" option, in combination with the "auto-dnssec" option that was introduced in BIND 9.7, allows named to sign zones completely transparently. Approved by: delphij (mentor) MFC after: 3 days Sponsored by: DK Hostmaster A/S
33 lines
1.1 KiB
Makefile
33 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
BIND_DIR= ${.CURDIR}/../../../contrib/bind9
|
|
SRCDIR= ${BIND_DIR}/doc
|
|
|
|
.PATH: ${BIND_DIR} ${SRCDIR}/arm ${SRCDIR}/misc
|
|
|
|
NO_OBJ=
|
|
|
|
FILESGROUPS= TOP ARM MISC
|
|
TOP= CHANGES COPYRIGHT FAQ HISTORY 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.ch10.html Bv9ARM.html Bv9ARM.pdf \
|
|
man.arpaname.html man.ddns-confgen.html man.dig.html \
|
|
man.dnssec-dsfromkey.html man.dnssec-keyfromlabel.html \
|
|
man.dnssec-keygen.html man.dnssec-revoke.html \
|
|
man.dnssec-settime.html man.dnssec-signzone.html \
|
|
man.dnssec-verify.html \
|
|
man.genrandom.html man.host.html man.isc-hmac-fixup.html \
|
|
man.named-checkconf.html man.named-checkzone.html \
|
|
man.named-journalprint.html man.named.html \
|
|
man.nsec3hash.html man.nsupdate.html \
|
|
man.rndc-confgen.html man.rndc.conf.html man.rndc.html
|
|
ARMDIR= ${TOPDIR}/arm
|
|
MISC= dnssec format-options.pl ipv6 migration migration-4to9 \
|
|
options rfc-compliance roadmap sdb sort-options.pl
|
|
MISCDIR= ${TOPDIR}/misc
|
|
|
|
.include <bsd.prog.mk>
|