forked from mlms13/bs-decode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
67 lines (52 loc) · 2.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
project_name = bs-decode
DUNE = opam exec -- dune
.DEFAULT_GOAL := help
.PHONY: help
help: ## Print this help message
@echo "List of available make commands";
@echo "";
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}';
@echo "";
.PHONY: create-switch
create-switch: ## Create opam switch
opam switch create . -y --deps-only
.PHONY: init
init: create-switch install ## Configure everything to develop this repository in local
.PHONY: install
install: ## Install development dependencies
$(DUNE) build @install
yarn install ## install JavaScript packages that the project might depend on, like `react` or `react-dom`
opam update ## make sure that opam has the latest information about published libraries in the opam repository https://opam.ocaml.org/packages/
opam install -y . --deps-only --with-test ## install the Melange and OCaml dependencies
opam exec opam-check-npm-deps ## check that the versions of the JavaScript packages installed match the requirements defined by Melange libraries
.PHONY: install-ci
install-ci: ## Install development dependencies
yarn install ## install JavaScript packages that the project might depend on, like `react` or `react-dom`
opam update ## make sure that opam has the latest information about published libraries in the opam repository https://opam.ocaml.org/packages/
opam install -y . --deps-only --with-test ## install the Melange and OCaml dependencies
opam exec opam-check-npm-deps ## check that the versions of the JavaScript packages installed match the requirements defined by Melange libraries
.PHONY: build
build: ## Build the project
$(DUNE) build @main
.PHONY: watch
watch: ## Watch for the filesystem and rebuild on every change
$(DUNE) build --watch @main
.PHONY: clean
clean: ## Clean build artifacts and other generated files
rm test/output/test/utils/BigJson.json
$(DUNE) clean
.PHONY: copy-test-json
copy-test-json: ## Copy test json files to the right place
cp test/utils/BigJson.json test/output/test/utils/BigJson.json
.PHONY: test
test: copy-test-json
yarn test
.PHONY: test-coverage
test-coverage: copy-test-json
yarn test --coverage
.PHONY: format
format: ## Format the codebase with ocamlformat
$(DUNE) build @fmt --auto-promote
.PHONY: format-check
format-check: ## Checks if format is correct
$(DUNE) build @fmt