From 611b752e95b46af913b57ab61cc323e696cb9456 Mon Sep 17 00:00:00 2001 From: Jim Lawson Date: Tue, 3 Nov 2015 15:57:25 -0800 Subject: Add compile and checkstyle make targets. --- Makefile | 7 +++++-- 1 file 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 -- cgit v1.2.3