-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
59 lines (45 loc) · 1.59 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
project_name = jsoo-react-template
DUNE = opam exec -- dune
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 . --deps-only --locked
.PHONY: init
init: create-switch install pins ## Configure everything to develop this repository in local
yarn
.PHONY: install
install: ## Install development dependencies
opam install . --deps-only --with-test --locked
opam lock .
.PHONY: deps
deps: $(opam_file) ## Alias to update the opam file and install the needed deps
.PHONY: build
build: ## Build the project
$(DUNE) build @@default
.PHONY: build-prod
build-prod: ## Build the project with prod mode
$(DUNE) build @@default --profile=prod
.PHONY: start
start: ## Serve the application with a local HTTP server
yarn server
.PHONY: clean
clean: ## Clean build artifacts and other generated files
$(DUNE) clean
.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: watch
watch: ## Watch for the filesystem and rebuild on every change
$(DUNE) build @@default --watch
$(opam_file): $(project_name).opam.template dune-project ## Update the package dependencies when new deps are added to dune-project
opam exec -- dune build @install # Update the $(project_name).opam file