summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2aa83bf2..5aba65ac 100644
--- a/Makefile
+++ b/Makefile
@@ -25,11 +25,11 @@ c_resources_dir := src/main/resources
test_outs := $(addprefix $(targetDir)/, $(addsuffix .out, $(test_results)))
-.PHONY: smoke publish-local check clean jenkins-build coverage scaladoc test
+.PHONY: smoke publish-local check clean jenkins-build coverage scaladoc test checkstyle compile
default: publish-local
-smoke:
+smoke compile:
$(SBT) $(SBT_FLAGS) compile
publish-local:
@@ -40,6 +40,9 @@ test:
check: test $(test_outs)
+checkstyle:
+ $(SBT) $(SBT_FLAGS) scalastyle test:scalastyle
+
coverage:
$(SBT) $(SBT_FLAGS) coverage test
$(SBT) $(SBT_FLAGS) coverageReport