From f449f278dd3c70e479a035f50a9bb817a9b433ba Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:24:08 +0200 Subject: Adding upstream version 3.2.6. Signed-off-by: Daniel Baumann --- Makefile.am | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 99 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f6cab44 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,99 @@ +ACLOCAL_AMFLAGS = -I m4 +SUBDIRS = src tests tests-fuzz python samples distro doc + +EXTRA_DIST = README.md + +.PHONY: singlehtml epub install-singlehtml install-epub +singlehtml install-singlehtml epub install-epub: + $(MAKE) -C doc $@ + +.PHONY: check-compile +check-compile: + $(MAKE) $(AM_MAKEFLAGS) -C tests $@ + $(MAKE) $(AM_MAKEFLAGS) -C tests-fuzz $@ + +AM_DISTCHECK_CONFIGURE_FLAGS = + +CODE_COVERAGE_INFO = coverage.info +CODE_COVERAGE_HTML = coverage.html +CODE_COVERAGE_DIRS = \ + src/contrib \ + src/knot \ + src/libdnssec \ + src/libknot \ + src/libzscanner + +code_coverage_quiet = --quiet + +check-code-coverage: +if CODE_COVERAGE_ENABLED + $(MAKE) $(AM_MAKEFLAGS) code-coverage-initial + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) code-coverage-capture + $(MAKE) $(AM_MAKEFLAGS) code-coverage-html + $(MAKE) $(AM_MAKEFLAGS) code-coverage-summary +else + @echo "You need to run configure with --enable-code-coverage to enable code coverage" +endif + +code-coverage-initial: +if CODE_COVERAGE_ENABLED + $(LCOV) $(code_coverage_quiet) \ + --no-external \ + $(foreach dir, $(CODE_COVERAGE_DIRS), --directory $(top_builddir)/$(dir)) \ + --capture --initial \ + --ignore-errors source \ + --no-checksum \ + --compat-libtool \ + --output-file $(CODE_COVERAGE_INFO) +else + @echo "You need to run configure with --enable-code-coverage to enable code coverage" +endif + +code-coverage-capture: +if CODE_COVERAGE_ENABLED + $(LCOV) $(code_coverage_quiet) \ + --no-external \ + $(foreach dir, $(CODE_COVERAGE_DIRS), --directory $(builddir)/$(dir)) \ + --capture \ + --ignore-errors source \ + --no-checksum \ + --compat-libtool \ + --output-file $(CODE_COVERAGE_INFO) +else + @echo "You need to run configure with --enable-code-coverage to enable code coverage" +endif + +code-coverage-html: +if CODE_COVERAGE_ENABLED + @echo "Generating code coverage HTML report (this might take a while)" + LANG=C $(GENHTML) $(code_coverage_quiet) \ + --output-directory $(CODE_COVERAGE_HTML) \ + --title "Knot DNS $(PACKAGE_VERSION) Code Coverage" \ + --legend --show-details \ + --ignore-errors source \ + $(CODE_COVERAGE_INFO) +else + @echo "You need to run configure with --enable-code-coverage to enable code coverage" +endif + +code-coverage-summary: +if CODE_COVERAGE_ENABLED + $(LCOV) \ + --summary $(CODE_COVERAGE_INFO) +else + @echo "You need to run configure with --enable-code-coverage to enable code coverage" +endif + +if CODE_COVERAGE_ENABLED +clean-local: code-coverage-clean + -find . -name "*.gcno" -delete +code-coverage-clean: + -$(LCOV) --directory $(top_builddir) -z + -rm -rf $(CODE_COVERAGE_INFO) $(CODE_COVERAGE_HTML) + -find . -name "*.gcda" -o -name "*.gcov" -delete +endif + + +.PHONY: check-code-coverage code-coverage-initial code-coverage-capture code-coverage-html code-coverage-summary code-coverage-clean +.NOTPARALLEL: clean -- cgit v1.2.3