forked from lkwq007/ocaml-manual-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
45 lines (33 loc) · 989 Bytes
/
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
all: ocaml tools manual tests
ocaml:
cd ocaml && test -s ocamlc || ( ./configure && $(MAKE) world.opt )
# The tools and the tests are rebuilt each time in order to avoid issues with
# different compiler versions
tests: manual
$(MAKE) -C tests clean
$(MAKE) -C tests all
tools:
$(MAKE) -C tools clean
$(MAKE) -C tools all
$(MAKE) -C tests tools
manual: tools
$(MAKE) -C manual all
html: tools
$(MAKE) -C manual html
.PHONY: release
release:
$(MAKE) -C manual release
# The pregen-etex target generates the latex files from the .etex
# files to ensure that this phase of the manual build process, which
# may execute OCaml fragments and expect certain outputs, is correct
pregen-etex: tools
$(MAKE) -C manual etex-files
# pregen builds both .etex files and the documentation of the standard library
pregen: tools
$(MAKE) -C manual files
.PHONY: ocaml tests manual tools
.PHONY: clean
clean:
$(MAKE) -C manual clean
$(MAKE) -C tools clean
$(MAKE) -C tests clean