From 74a7a2689e81c08dd2fc419de21a1240e544a414 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 22 Oct 2024 14:37:34 +0200 Subject: [PATCH] Update Makefile --- Makefile | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) 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"