From e96400b6026d13137ebea710d4c1bc13fece3625 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Tue, 18 Apr 2023 21:34:04 +0200 Subject: [PATCH] Make sure that `make clean` removes coverage info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I spent 20 minutes trying to understand why lcov/gcov were complaining about wrong coverage format/version, before I saw I had a 2 year old file that was not overwritten nor removed… --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b204a1..fcb706e 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ release-tag: git tag -s -m 'Release version $(VERSION).' mt-st-$(VERSION) clean: - rm -f *~ \#*\# *.o $(PROGS) version.h + rm -f *~ \#*\# *.o *.gcno *.gcda coverage.info $(PROGS) version.h rm -rf out reindent: