blob: 5dc3c00952377a489e569a306fd7bd8149bc8faf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CXXFLAGS+=-fprofile-arcs -ftest-coverage
LCOV_FILE=newsbeuter.info
include Makefile
lcov-init:
$(RM) $(LCOV_FILE)
lcov-add:
lcov -b . -d . -c --output-file $(LCOV_FILE)
lcov-html:
genhtml $(LCOV_FILE)
|