-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (32 loc) · 943 Bytes
/
Copy pathMakefile
File metadata and controls
41 lines (32 loc) · 943 Bytes
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
UNITS=arithmetic main statistics matrix trigonometric myset fibonacci authors breakthecode monty imports
MLS_WITHOUT_MLIS=ast
MLS=$(UNITS:=.ml) $(MLS_WITHOUT_MLIS:=.ml)
OBJECTS=$(UNITS:=.cmo) $(MLS_WITHOUT_MLIS:=.cmo) parser.cmo
MLIS=$(UNITS:=.mli)
TEST=test.byte
MAIN=main.byte
OCAMLBUILD=ocamlbuild -use-ocamlfind -use-menhir
PKGS=oUnit
default: build
utop
build:
$(OCAMLBUILD) $(OBJECTS)
test:
$(OCAMLBUILD) -tag debug $(TEST) && ./$(TEST)
clean:
ocamlbuild -clean
rm -rf doc.public doc.private calculator.zip _build
calc:
$(OCAMLBUILD) calc.byte && ./calc.byte
zip:
zip calculator.zip *
docs: docs-public docs-private
docs-public: build
mkdir -p doc.public
ocamlfind ocamldoc -I _build -package $(PKGS) \
-html -stars -d doc.public $(MLIS)
docs-private: build
mkdir -p doc.private
ocamlfind ocamldoc -I _build -package $(PKGS) \
-html -stars -d doc.private \
-inv-merge-ml-mli -m A -hide-warnings $(MLIS) $(MLS)