aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile/gmake_coverage.in
blob: 2656069e3a71065f3f2d6d4f241fa1e09f597fe7 (plain)
1
2
3
4
5
6
%{out_dir}/coverage/index.html: $(TEST)
	LD_LIBRARY_PATH=%{out_dir} $(TEST)
	lcov --directory "%{build_dir}/obj/lib" --base-directory "%{src_dir}" --no-external --capture --output-file "%{out_dir}/coverage.info"
	genhtml "%{out_dir}/coverage.info" -o "%{out_dir}/coverage"

lcov: %{out_dir}/coverage/index.html