mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 10:21:10 -05:00
The fuzzing tests were temporarily disabled when the build system has been converted to automake. This commit restores the functionality to run the fuzzing tests as part of the `make check`. When the afl or libfuzzer is enabled via ./configure, it uses a custom LOG_DRIVER (fuzz/<fuzzer.sh>). Currently only libfuzzer.sh has been implemented that runs each fuzz test for 5 seconds each.
25 lines
492 B
Makefile
25 lines
492 B
Makefile
include $(top_srcdir)/Makefile.top
|
|
|
|
SUBDIRS = . libltdl lib doc bin fuzz
|
|
|
|
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 > $@
|
|
|
|
dist_sysconf_DATA = bind.keys
|
|
|
|
.PHONY: doc
|
|
|
|
EXTRA_DIST = \
|
|
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
|