forked from ocaml/dune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (46 loc) · 1.39 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
INSTALL_ARGS := $(if $(PREFIX),--prefix $(PREFIX),)
BIN := ./_build/default/bin/main_dune.exe
-include Makefile.dev
default: boot.exe
./boot.exe
release: boot.exe
./boot.exe --release
boot.exe: bootstrap.ml
ocaml bootstrap.ml
install:
$(BIN) install $(INSTALL_ARGS) dune
uninstall:
$(BIN) uninstall $(INSTALL_ARGS) dune
reinstall: uninstall reinstall
test:
$(BIN) runtest
test-js:
$(BIN) build @runtest-js
test-all:
$(BIN) build @runtest @runtest-js
promote:
$(BIN) promote
accept-corrections: promote
all-supported-ocaml-versions:
$(BIN) build @install @runtest --workspace dune-workspace.dev --root .
clean:
$(BIN) clean
rm -f ./boot.exe $(wildcard ./bootstrap.cmi ./bootstrap.cmo ./bootstrap.exe)
distclean: clean
rm -f src/setup.ml
doc:
cd doc && sphinx-build . _build
livedoc:
cd doc && sphinx-autobuild . _build \
-p 8888 -q --host $(shell hostname) -r '\.#.*'
update-jbuilds: $(BIN)
$(BIN) build @doc/runtest --auto-promote
.PHONY: default install uninstall reinstall clean test doc
.PHONY: promote accept-corrections opam-release
VERSION ?= $(shell git describe --tags --abbrev=0)
DIST_URI = https://github.com/ocaml/dune/releases/download/$(VERSION)/jbuilder-$(subst +,.,$(VERSION)).tbz
opam-release:
topkg distrib --skip-build --skip-lint --skip-tests
topkg publish distrib --verbose
topkg opam pkg --dist-uri='$(DIST_URI)'
topkg opam submit --dist-uri='$(DIST_URI)'