blob: 325c326c7f8c5ef01af9aaf1c61f1293e3198b16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.PHONY: all test clean
all:
ocamlbuild 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
|