diff options
author | Ted Gould <ted@gould.cx> | 2012-02-10 15:51:42 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2012-02-10 15:51:42 -0600 |
commit | c8ccec624f8ea5927217557b07c0258ceb94a77c (patch) | |
tree | 8fee3668376814f23eac0981a45300ca1de26252 /Makefile.am | |
parent | 5e7445585d40682f25f0a2a9f434489238bf6f2b (diff) | |
parent | b93d786ba481f09aa56e4666b378c6ac66d6850d (diff) | |
download | ayatana-indicator-power-c8ccec624f8ea5927217557b07c0258ceb94a77c.tar.gz ayatana-indicator-power-c8ccec624f8ea5927217557b07c0258ceb94a77c.tar.bz2 ayatana-indicator-power-c8ccec624f8ea5927217557b07c0258ceb94a77c.zip |
Support building coverage targets
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 0d4d34b..fbd9e6b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,12 +20,14 @@ libpower_la_SOURCES = \ libpower_la_CFLAGS = \ $(UPOWER_CFLAGS) \ $(INDICATOR_CFLAGS) \ + $(COVERAGE_CFLAGS) \ -Wall -Werror \ -DG_LOG_DOMAIN=\"Indicator-Power\" libpower_la_LIBADD = \ $(UPOWER_LIBS) \ $(INDICATOR_LIBS) libpower_la_LDFLAGS = \ + $(COVERAGE_LDFLAGS) \ -module \ -avoid-version @@ -73,3 +75,39 @@ dist-hook: else \ echo Failed to generate AUTHORS: not a branch >&2; \ fi + + +# Coverage targets + +.PHONY: clean-gcda +clean-gcda: + @echo Removing old coverage results + -find -name '*.gcda' -print | xargs -r rm + +.PHONY: coverage-html generate-coverage-html clean-coverage-html +coverage-html: clean-gcda + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) generate-coverage-html + +generate-coverage-html: + @echo Collecting coverage data + $(LCOV) --directory $(top_builddir) --capture --output-file coverage.info --no-checksum --compat-libtool + LANG=C $(GENHTML) --prefix $(top_builddir) --output-directory coveragereport --title "Code Coverage" --legend --show-details coverage.info + +clean-coverage-html: clean-gcda + -$(LCOV) --directory $(top_builddir) -z + -rm -rf coverage.info coveragereport + +.PHONY: coverage-xml generate-coverage-xml clean-coverage-xml +coverage-xml: clean-gcda + -$(MAKE) $(AM_MAKEFLAGS) -k check + $(MAKE) $(AM_MAKEFLAGS) generate-coverage-xml + +generate-coverage-xml: + @echo Generating coverage XML report + $(GCOVR) -x -r $(top_builddir) -o $(top_builddir)/coverage.xml + +clean-coverage-xml: clean-gcda + -rm -rf $(top_builddir)/coverage.xml + +clean-local: clean-coverage-html clean-coverage-xml |