git commit -m "Updated documentation for $(PACKAGE) to version $(VERSION)" && \
git push ; \
popd > /dev/null && \
- rm -rf $(PACKAGE)-$(VERSION)
\ No newline at end of file
+ rm -rf $(PACKAGE)-$(VERSION)
+
+lcov: check
+ @rm -rf lcov-report
+ @lcov -c --directory libgsignon-glib/ --output-file lcov.output
+ @genhtml lcov.output --output-directory lcov-report
+ @rm lcov.output
+ @echo "Coverage report is in file://$(abs_srcdir)/lcov-report/index.html"
\ No newline at end of file