Newer
Older
project / mk / check-lcov-cobertura-rule.mk
Nomura Kei on 24 Apr 2020 455 bytes first commit
  1. # ------------------------------------------------------------------------------
  2. # lcov cobertura ルール
  3. # ------------------------------------------------------------------------------
  4. .PHONY: lcov-cobertura
  5. lcov-cobertura: lcov
  6. @for subdir in $(SUBDIRS); do \
  7. $(MAKE) lcov-cobertura -C $$subdir; \
  8. done
  9. ifeq ($(strip $(TARGET)),ut.exe)
  10. $(LCOV_COBERTURA) $(LCOV_COBERTURA_INFO) -b `pwd` -o $(LCOV_COBERTURA_REPORT_DIR)/lcov-coverage.xml
  11. endif
  12.