aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2022-02-04 20:43:12 +0000
committerAlex Bennée <alex.bennee@linaro.org>2022-02-09 12:08:41 +0000
commit029e2da880f323d97c644a9ee70150c15e91ae2a (patch)
tree105641885aaab771cadbece3d18478e2eea0e787
parent8dcb404bff6d9147765d7dd3e9c8493372186420 (diff)
downloadqemu-029e2da880f323d97c644a9ee70150c15e91ae2a.zip
qemu-029e2da880f323d97c644a9ee70150c15e91ae2a.tar.gz
qemu-029e2da880f323d97c644a9ee70150c15e91ae2a.tar.bz2
Makefile: also remove .gcno files when cleaning
Left over .gcno files from old builds can really confuse gcov and the user expects a clean slate after "make clean". Make clean mean clean. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20220204204335.1689602-4-alex.bennee@linaro.org>
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index db9a788..e5fd1ebd 100644
--- a/Makefile
+++ b/Makefile
@@ -206,7 +206,8 @@ recurse-clean: $(addsuffix /clean, $(ROM_DIRS))
clean: recurse-clean
-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) -t clean || :
-$(quiet-@)test -f build.ninja && $(NINJA) $(NINJAFLAGS) clean-ctlist || :
- find . \( -name '*.so' -o -name '*.dll' -o -name '*.[oda]' \) -type f \
+ find . \( -name '*.so' -o -name '*.dll' -o \
+ -name '*.[oda]' -o -name '*.gcno' \) -type f \
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-aarch64.a \
! -path ./roms/edk2/ArmPkg/Library/GccLto/liblto-arm.a \
-exec rm {} +