mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

Add types of files that genhtml (the program that generates html files from .gcno/.gcda files, included in lcov) should ignore, such as .yy and .ll files.
12 lines
223 B
Makefile
12 lines
223 B
Makefile
coverage: cleanup
|
|
@./code_coverage.sh
|
|
|
|
cleanup:
|
|
@rm -f coverage.log
|
|
@find ../../ -name "*.gcov" -exec rm {} \;
|
|
|
|
distclean: cleanup
|
|
@find ../../ -name "*.gcno" -exec rm {} \;
|
|
|
|
html:
|
|
@./lcov_html.sh $(COVERAGE_HTML_DIR)
|