summaryrefslogtreecommitdiff
path: root/Makefile.prof
blob: c923546a51b426322ebc86b0639bfe262ca1daf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CXXFLAGS+=-fprofile-arcs -ftest-coverage
CFLAGS+=-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)