-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
35 lines (28 loc) · 984 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
################################################################
# Misc
################################################################
help: ## Display this messages
@grep -E '^[a-zA-Z/_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
################################################################
# Development
################################################################
compile: ## Compile code
sbt compile
clean: ## Delete generated file for target
sbt clean
test: ## Run unit testing
sbt test
test/continuous: ## Run unit testing
sbt ~test
################################################################
# publish
################################################################
publishLocal:
sbt publishLocal
publish:
sbt publish
################################################################
# release
################################################################
release:
sbt release