diff options
| -rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 4ecf9ba7..325c326c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,8 +1,11 @@ -.PHONY: all clean +.PHONY: all test clean all: ocamlbuild main.native test/run_tests.native +test: all + ./run_tests.native + clean: -ocamlbuild -clean -rm -rf _build |
