diff --git a/Makefile b/Makefile index 4689ef8af..c4f435597 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ GRADLE ?= ./gradlew .PHONY: all -all: check jacocoRootReport javadocAll sinttest +all: check codecov eclipse javadocAll sinttest .PHONY: codecov codecov: $(GRADLE) smack-java11-full:testCodeCoverageReport - echo "Report available at smack-java11-full/build/reports/jacoco/testCodeCoverageReport/html/index.html" + echo "code coverage report available at file://$(PWD)/smack-java11-full/build/reports/jacoco/testCodeCoverageReport/html/index.html" .PHONY: check check: @@ -20,11 +20,7 @@ eclipse: sinttest: $(GRADLE) $@ -.PHONY: jacocoRootReport -jacocoRootReport: - $(GRADLE) $@ - .PHONY: javadocAll javadocAll: $(GRADLE) $@ - echo "Smack javadoc available at build/javadoc/index.html" + echo "javadoc available at file://$(PWD)/build/javadoc/index.html"