-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
63 lines (49 loc) · 1.82 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
project_name = sketch_engine
opam_file = $(project_name).opam
.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:
opam switch create . 4.13.1 --deps-only
.PHONY: install
install: $(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: build
build: ## Build the project, including non installable libraries and executables
dune build @@default
.PHONY: clean
clean: ## Clean the project
dune clean
rm -rf build
.PHONY: js_dev
js_dev: ## Create engine .js artifact in dev mode
# Compiling engine to Javascript with dev mode
dune build @@src/entry/dev
mkdir -p build/engine
cp _build/default/src/entry/entry_dev.js ./build/engine/engine.js
.PHONY: js_prod
js_prod: ## Create engine .js artifact in prod mode
# Compiling engine to Javascript with prod mode (no --pretty)
dune build @@src/entry/prod
mkdir -p build/engine
cp _build/default/src/entry/entry.js ./build/engine/engine.js
.PHONY: packages
packages: engine ## Compiling libraries to Javascript
sketch.packager --output build/packages base containers lwt owl-base re ocamlgraph sexplib unix
.PHONY: test
test: js_prod ## Run end-to-end tests
yarn test
.PHONY: test_promote
test_promote: js_prod ## Run end-to-end tests and promote snapshot
yarn test-promote
# Update the package dependencies when new deps are added to dune-project
$(opam_file): dune-project $(opam_file).template
-dune build @install # Update the $(project_name).opam file
opam install . --deps-only # Install the new dependencies