~mordred/debian/sid/pandora-build/upstream-update

« back to all changes in this revision

Viewing changes to quickly/templates/pandora-build-c/project_root_library/Makefile.am

  • Committer: Monty Taylor
  • Date: 2010-10-08 17:29:39 UTC
  • mfrom: (68.1.175 pandora-build)
  • Revision ID: mordred@inaugust.com-20101008172939-b1vsdlxj3oatcdg1
Merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        @echo "*/" >> docs/mainpage.h
92
92
        ${DOXYGEN} ${top_srcdir}/docs/Doxyfile
93
93
        @rm docs/mainpage.h
94
 
 
95
 
lcov: lcov-clean check
96
 
        @echo
97
 
        @echo "------------------------------------------------------"
98
 
        @echo "Make sure ./configure was run with '--enable-coverage'"
99
 
        @echo "------------------------------------------------------"
100
 
        @echo
101
 
        cd project_name && lcov --directory . --base-directory .. --capture --output-file lcov.out
102
 
        cd project_name && lcov --directory . --base-directory .. --extract lcov.out `pwd`/\* --output-file lcov_extract.out
103
 
        genhtml -o lcov -t project_name project_name/lcov_extract.out
104
 
 
105
 
lcov-clean: clean
106
 
        find . -name '*.gcno' -exec rm {} \;
107
 
        find . -name '*.gcda' -exec rm {} \;
108
 
        find . -name 'lcov*.out' -exec rm {} \;