-
Notifications
You must be signed in to change notification settings - Fork 113
/
Makefile
58 lines (47 loc) · 1.33 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
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)
.PHONY: all
all:
dune build
.PHONY: install
install:
dune install $(INSTALL_ARGS)
.PHONY: uninstall
uninstall:
dune uninstall $(INSTALL_ARGS)
.PHONY: reinstall
reinstall:
$(MAKE) uninstall
$(MAKE) install
.PHONY: examples
examples:
dune build @examples
.PHONY: test
test:
dune runtest
.PHONY: all-supported-ocaml-versions
all-supported-ocaml-versions:
dune build --workspace dune-workspace.dev
.PHONY: cinaps
cinaps:
cinaps -styler ocp-indent -i src/migrate_parsetree_versions.ml*
cinaps -styler ocp-indent -i src/migrate_parsetree_40?_40?.ml*
.PHONY: clean
clean:
rm -rf _build *.install
find . -name .merlin -delete
.PHONY: create-switches
create-switches:
opam switch create utop-412 4.12.0
opam switch create utop-413 4.13.1
opam switch create utop-414 4.14.1
opam switch create utop-500 5.0.0
opam switch create utop-510 5.1.0
opam switch create utop-520 5.2.0+trunk
.PHONY: install-switches
install-switches:
opam install --switch utop-412 --deps-only --with-test -y .
opam install --switch utop-413 --deps-only --with-test -y .
opam install --switch utop-414 --deps-only --with-test -y .
opam install --switch utop-500 --deps-only --with-test -y .
opam install --switch utop-510 --deps-only --with-test -y .
opam install --switch utop-520 --deps-only --with-test -y .