diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index d8bd555569..0a30a7e97c 100644 --- a/.gitignore +++ b/.gitignore @@ -186,6 +186,7 @@ *.gcov /coverage-untested-functions /cover_db/ +/cover_db_html/ *+ /config.mak /autom4te.cache @@ -2299,6 +2299,7 @@ coverage-clean: $(RM) $(addsuffix *.gcno,$(object_dirs)) $(RM) coverage-untested-functions $(RM) -r cover_db/ + $(RM) -r cover_db_html/ COVERAGE_CFLAGS = $(CFLAGS) -O0 -ftest-coverage -fprofile-arcs COVERAGE_LDFLAGS = $(CFLAGS) -O0 -lgcov @@ -2321,3 +2322,6 @@ coverage-untested-functions: coverage-report cover_db: coverage-report gcov2perl -db cover_db *.gcov + +cover_db_html: cover_db + cover -report html -outputdir cover_db_html cover_db |