mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 02:10:30 -05:00
the built-in trust anchors in named and delv are sufficent for validation. named still needs to be able to load trust anchors from a bind.keys file for testing purposes, but it doesn't need to be the default behavior. we now only load trust anchors from a file if explicitly specified via the "bindkeys-file" option in named or the "-a" command line argument to delv. documentation has been cleaned up to remove references to /etc/bind.keys. Closes #3850.
28 lines
517 B
Makefile
28 lines
517 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
SUBDIRS = . lib doc bin fuzz
|
|
|
|
if HAVE_CMOCKA
|
|
SUBDIRS += tests
|
|
endif HAVE_CMOCKA
|
|
|
|
BUILT_SOURCES = bind.keys.h
|
|
CLEANFILES = bind.keys.h
|
|
|
|
bind.keys.h: bind.keys Makefile
|
|
${PERL} ${top_srcdir}/util/bindkeys.pl ${top_srcdir}/bind.keys > $@
|
|
|
|
.PHONY: doc
|
|
|
|
EXTRA_DIST = \
|
|
bind.keys \
|
|
util/bindkeys.pl \
|
|
contrib \
|
|
CHANGES \
|
|
COPYRIGHT \
|
|
LICENSE \
|
|
*.md
|
|
|
|
dist-hook:
|
|
find $(distdir) -type f -name .gitignore -delete
|
|
git rev-parse --short HEAD | cut -b1-7 > $(distdir)/srcid
|