Skip to content

Commit

Permalink
Add compile and checkstyle make targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
ucbjrl authored and palmer-dabbelt committed Nov 4, 2015
1 parent 3a21546 commit 611b752
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 611b752

Please sign in to comment.