-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
135 lines (102 loc) · 3.68 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
project_name = server-reason-react
DUNE = opam exec -- dune
opam_file = $(project_name).opam
.PHONY: help
help: ## Print this help message
@echo "";
@echo "List of available make commands";
@echo "";
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}';
@echo "";
.PHONY: build
build: ## Build the project, including non installable libraries and executables
$(DUNE) build --profile=dev
.PHONY: build-prod
build-prod: ## Build for production (--profile=prod)
$(DUNE) build --profile=prod
.PHONY: build-demo
build-demo: ## Build the project, including non installable libraries and executables
$(DUNE) build --profile=dev @install @client
.PHONY: dev
dev: ## Build in watch mode
$(DUNE) build -w --profile=dev @all
.PHONY: clean
clean: ## Clean artifacts
$(DUNE) clean
.PHONY: test
test: ## Run the unit tests
$(DUNE) build @runtest
.PHONY: test-watch
test-watch: ## Run the unit tests in watch mode
$(DUNE) build @runtest -w
.PHONY: test-promote
test-promote: ## Updates snapshots and promotes it to correct
$(DUNE) build @runtest --auto-promote
.PHONY: deps
deps: $(opam_file) ## Alias to update the opam file and install the needed deps
.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
.PHONY: init
setup-githooks: ## Setup githooks
git config core.hooksPath .githooks
.PHONY: create-switch
create-switch: ## Create opam switch
opam switch create . 5.1.1 --deps-only --with-test -y
.PHONY: install
install:
opam install . --deps-only --with-test --with-doc --with-dev-setup
cd demo && npm install
.PHONY: pin
pin: ## Pin dependencies
echo "Nothing to pin"
.PHONY: init
init: setup-githooks create-switch pin install ## Create a local dev enviroment
.PHONY: ppx-test
ppx-test: ## Run ppx tests
$(DUNE) runtest packages/server-reason-react-ppx
.PHONY: ppx-test-watch
ppx-test-watch: ## Run ppx tests in watch mode
$(DUNE) runtest packages/server-reason-react-ppx --watch
.PHONY: ppx-test-promote
ppx-test-promote: ## Prommote ppx tests snapshots
$(DUNE) runtest packages/server-reason-react-ppx --auto-promote
.PHONY: lib-test
lib-test: ## Run library tests
$(DUNE) exec test/test.exe
.PHONY: demo
demo: build-demo ## Run demo executable
$(DUNE) exec demo/server/server.exe --display-separate-messages --no-print-directory --profile=dev
.PHONY: demo-watch
demo-watch: build-demo ## Run demo executable in watch mode
$(DUNE) exec demo/server/server.exe --display-separate-messages --no-print-directory --display=quiet --watch --profile=dev
.PHONY: subst
subst: ## Run dune substitute
$(DUNE) subst
.PHONY: docs
docs: ## Generate odoc documentation
$(DUNE) build --root . @doc-new --profile=prod
# Because if the hack above, we can't have watch mode
.PHONY: docs-watch
docs-watch: ## Generate odoc docs
$(DUNE) build --root . -w @doc-new --profile=prod
.PHONY: docs-open
docs-open: ## Open odoc docs with default web browser
open _build/default/_doc_new/html/docs/local/server-reason-react/index.html
.PHONY: docs-serve
docs-serve: docs docs-open ## Open odoc docs with default web browser
.PHONY: build-bench
build-bench: ## Run benchmark
$(DUNE) build --profile=release
.PHONY: bench
bench: build-bench ## Run benchmark
@$(DUNE) exec bench/main.exe --profile=release --display-separate-messages --no-print-directory
.PHONY: bench-watch
bench-watch: build-bench ## Run benchmark in watch mode
$(DUNE) exec bench/main.exe --profile=release --display-separate-messages --no-print-directory --watch
.PHONY: once
once: build-bench ## Run benchmark once
@time _build/default/bench/once.exe