From 37fee47bcc4c55f89c05b6da0fb2340cb4b0452d Mon Sep 17 00:00:00 2001 From: Sears Russell Date: Tue, 13 Mar 2007 06:52:10 +0000 Subject: [PATCH] Expanded tidy to include temporary coverage and profiling files. --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 957faa0..a50fe31 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,12 +13,15 @@ docs: doxygen doc/Doxyfile-api doxygen doc/Doxyfile-developers -tidy: +tidy: precoverage find . -name '*~' -exec rm '{}' \; find . -name 'core' -exec rm '{}' \; find . -name 'core.[0-9]*' -exec rm '{}' \; find . -name 'vgcore.*' -exec rm '{}' \; find . -name '.\#*' -exec rm '{}' \; + find . -name '*.da' -exec rm '{}' \; + find . -name '*.gcda' -exec rm '{}' \; + find . -name '*.gcno' -exec rm '{}' \; precoverage :