From 67e8149cbfc4943060862df8a97871a0734f7242 Mon Sep 17 00:00:00 2001 Message-Id: <67e8149cbfc4943060862df8a97871a0734f7242.1715114929.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 6 Dec 2008 13:51:14 +0000 Subject: [PATCH] Clean up after coverage testing properly Organization: Straylight/Edgeware From: Richard Kettlewell --- cgi/Makefile.am | 2 ++ clients/Makefile.am | 3 ++- disobedience/Makefile.am | 3 ++- lib/Makefile.am | 2 +- libtests/Makefile.am | 2 +- server/Makefile.am | 2 ++ tests/Makefile.am | 1 + 7 files changed, 11 insertions(+), 4 deletions(-) diff --git a/cgi/Makefile.am b/cgi/Makefile.am index bb55a1b..22e2a77 100644 --- a/cgi/Makefile.am +++ b/cgi/Makefile.am @@ -29,3 +29,5 @@ disorder_DEPENDENCIES=../lib/libdisorder.a install-exec-hook: $(LIBTOOL) --mode=finish $(DESTDIR)$(cgiexecdir) + +CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html diff --git a/clients/Makefile.am b/clients/Makefile.am index f762799..91d4448 100644 --- a/clients/Makefile.am +++ b/clients/Makefile.am @@ -75,6 +75,7 @@ check-completions: disorder | sort > ,completions diff -u ,commands ,completions -CLEANFILES=,commands ,completions +CLEANFILES=,commands ,completions \ + *.gcda *.gcov *.gcno *.c.html index.html EXTRA_DIST=dump2wav diff --git a/disobedience/Makefile.am b/disobedience/Makefile.am index b2da5ee..e7072c7 100644 --- a/disobedience/Makefile.am +++ b/disobedience/Makefile.am @@ -66,6 +66,7 @@ check-help: all unset DISPLAY;./disobedience --version > /dev/null unset DISPLAY;./disobedience --help > /dev/null -CLEANFILES=disobedience.html images.h +CLEANFILES=disobedience.html images.h \ + *.gcda *.gcov *.gcno *.c.html index.html export GNUSED diff --git a/lib/Makefile.am b/lib/Makefile.am index ef10c49..5521775 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -133,6 +133,6 @@ rebuild-unicode: mv $@.new $@ CLEANFILES=definitions.h definitions.h.new version-string versionstring.h \ - *.gcda *.gcov *.gcno + *.gcda *.gcov *.gcno *.c.html index.html EXTRA_DIST=trackdb.c trackdb-stub.c diff --git a/libtests/Makefile.am b/libtests/Makefile.am index 6021e54..7530f8b 100644 --- a/libtests/Makefile.am +++ b/libtests/Makefile.am @@ -69,7 +69,7 @@ make-coverage-reports: EXTRA_DIST=t-macros-1.tmpl t-macros-2 -CLEANFILES=*.gcda *.gcov *.gcno +CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html DISTCLEANFILES=GraphemeBreakTest.txt NormalizationTest.txt \ WordBreakTest.txt diff --git a/server/Makefile.am b/server/Makefile.am index 59c1184..62ad1c4 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -136,3 +136,5 @@ check-decode: disorder-decode disorder-normalize rm -f scratch.wav config decoded.raw oggdec.raw EXTRA_DIST=README.dbversions + +CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html diff --git a/tests/Makefile.am b/tests/Makefile.am index 38ec744..2508499 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -34,3 +34,4 @@ clean-local: rm -rf testroot *.log *.pyc EXTRA_DIST=dtest.py ${TESTS} +CLEANFILES=*.gcda *.gcov *.gcno *.c.html index.html -- [mdw]