lcov.am 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Copyright (C) 2010 Hartmut Holzgraefe
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; version 2 of the License.
  6. #
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program; if not, write to the Free Software
  14. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  15. LCOV = lcov
  16. LCOV_GENHTML = genhtml
  17. lcov: lcov-html
  18. lcov-test: lcov-clean-data test
  19. drizzle_lcov.info: lcov-test
  20. @echo "Generating $@"
  21. $(LCOV) --directory . --capture --base-directory . --output-file $@
  22. $(LCOV) --remove $@ '/usr/include/*' --output-file $@
  23. $(LCOV) --remove $@ '/usr/local/include/*' --output-file $@
  24. @echo
  25. lcov-html: drizzle_lcov.info
  26. @echo "Generating lcov HTML"
  27. @$(LCOV_GENHTML) --legend --output-directory lcov_html/ --title "Drizzle Code Coverage" $<
  28. lcov-clean:
  29. rm -f drizzle_lcov.info
  30. rm -rf lcov_data/
  31. rm -rf lcov_html/
  32. lcov-clean-data:
  33. @find . -name \*.gcda -o -name \*.da -o -name \*.bbg? | xargs rm -f