From 5bac290cdf1016d2895d67f4227212286ebd6324 Mon Sep 17 00:00:00 2001 Message-Id: <5bac290cdf1016d2895d67f4227212286ebd6324.1714710628.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 6 Dec 2008 14:50:58 +0000 Subject: [PATCH] new target to remove coverage droppings Organization: Straylight/Edgeware From: Richard Kettlewell --- .bzrignore | 1 + Makefile.am | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.bzrignore b/.bzrignore index a4501f9..1bea24f 100644 --- a/.bzrignore +++ b/.bzrignore @@ -197,3 +197,4 @@ libtests/index.html libtests/t-eventdist doc/disorder_preferences.5 doc/disorder_preferences.5.html +plugins/index.html diff --git a/Makefile.am b/Makefile.am index c6ccb6f..501f344 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,6 +35,11 @@ make-coverage-reports: check cd ..;\ done +clean-gcov: + rm -f */index.html + rm -f */*.c.html + rm -f */*.gcov + echo-distdir: @echo $(distdir) -- [mdw]