From: Pavel Hrdina Date: Mon, 27 Jul 2020 06:12:25 +0000 (+0200) Subject: meson: Makefile: drop cov target X-Git-Tag: v6.7.0-rc1~597 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cf398f53d80ad939d157eb6d15e0b07d91b3eca5;p=thirdparty%2Flibvirt.git meson: Makefile: drop cov target Coverage functionality is provided directly by meson so there is no need to convert it into meson. Signed-off-by: Pavel Hrdina Reviewed-by: Ján Tomko Reviewed-by: Peter Krempa Reviewed-by: Neal Gompa --- diff --git a/Makefile.am b/Makefile.am index 6476668445..34744f3cea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,9 +16,6 @@ ## License along with this library. If not, see ## . -LCOV = lcov -GENHTML = genhtml - # when building from tarball -Werror isn't auto enabled # so force it explicitly DISTCHECK_CONFIGURE_FLAGS = --enable-werror @@ -45,17 +42,6 @@ check-local: all tests check-access: all @($(MAKE) $(AM_MAKEFLAGS) -C tests check-access) -cov: - $(MKDIR_P) $(top_builddir)/coverage - $(LCOV) -c -o $(top_builddir)/coverage/libvirt.info.tmp \ - -d $(top_builddir)/src \ - -d $(top_builddir)/tests - $(LCOV) -r $(top_builddir)/coverage/libvirt.info.tmp \ - -o $(top_builddir)/coverage/libvirt.info - rm $(top_builddir)/coverage/libvirt.info.tmp - $(GENHTML) --show-details -t "libvirt" -o $(top_builddir)/coverage \ - --legend $(top_builddir)/coverage/libvirt.info - BUILT_SOURCES = configmake.h dist-hook: gen-AUTHORS