blob: d36441b66f235f701291e2dc0919ab93a520f9cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
.PHONY: all test clean update_lem_lib
all:
ocamlbuild -classic-display main.native test/run_tests.native
test: all
./run_tests.native
clean:
-ocamlbuild -clean
-rm -rf _build
-rm -rf html-doc
-rm -rf tex-doc
-rm -rf lem lib
|