forked from gleam-lang/gleam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
30 lines (23 loc) · 754 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
#
# Goals to be specified by user
#
.PHONY: help
help:
@cat $(MAKEFILE_LIST) | grep -E '^[a-zA-Z_-]+:.*?## .*$$' | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: build
build: ## Build the compiler
cargo build --release
.PHONY: install
install: ## Build the Gleam compiler and place it on PATH
cd compiler-cli && cargo install --path . --force --locked
.PHONY: test
test: ## Run the compiler unit tests
cargo test
.PHONY: test
language-test: ## Run the language integration tests for all targets
cd test/language && make
.PHONY: test-watch
test-watch: ## Run compiler tests when files change
watchexec -e rs,html,capnp "cargo test"
# Debug print vars with `make print-VAR_NAME`
print-%: ; @echo $*=$($*)