diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2017-10-24 13:08:15 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2017-10-24 13:08:15 +0200 |
commit | e1e736840ed8c925e2ff442861963250a72d4385 (patch) | |
tree | c4d32c321c14df61d5d04f7356c1a6f97efbb1e9 /Makefile | |
parent | 3cd6317dc21cfb5bda950ae3ba29daf48e71f006 (diff) |
Update sheet traversal
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -30,8 +30,11 @@ native: stub doc:
$(OCAMLBUILD) -pkgs $(PACKAGES) -menhir -Is $(PATHS) licht.docdir/index.html
-test: stub
- $(OCAMLBUILD) -pkgs $(PACKAGES),oUnit -cflag -g -lflag -g $(STUB_OPTIONS) $(MENHIR) -Is $(PATHS),tests,tests/odf test.byte --
+test.byte: stub
+ $(OCAMLBUILD) -pkgs $(PACKAGES),oUnit -cflag -g -lflag -g $(STUB_OPTIONS) $(MENHIR) -Is $(PATHS),tests,tests/odf $@
+
+test: test.byte
+ ./test.byte
relink: stub
rm -f _build/main.native
|