aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lcov.am
blob: d2d282ac34a33dc25f938e5aff792b4c94b6af3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
lcov-reset:
    lcov --directory @top_srcdir@ --zerocounters

lcov-report:
    lcov --directory @top_srcdir@ --capture \
        --output-file @top_builddir@/lcov.info.tmp
    lcov --directory @top_srcdir@ --output-file @top_builddir@/lcov.info \
        --remove @top_builddir@/lcov.info.tmp telepathy-glib-scan.c
    rm @top_builddir@/lcov.info.tmp
    $(MKDIR_P) @top_builddir@/lcov.html
    echo "Coming soon!" > @top_builddir@/lcov.html/index.html
    git_commit=`GIT_DIR=@top_srcdir@/.git git log -1 --pretty=format:%h 2>/dev/null`;\
    genhtml --title "@PACKAGE_STRING@ $$git_commit" \
        --output-directory @top_builddir@/lcov.html lcov.info
    @echo
    @echo 'lcov report can be found in:'
    @echo 'file://@abs_top_builddir@/lcov.html/index.html'
    @echo

lcov-check:
    $(MAKE) lcov-reset
    $(MAKE) check $(LCOV_CHECK_ARGS)
    $(MAKE) lcov-report

## vim:set ft=automake: