We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca16331 commit d0fafa7Copy full SHA for d0fafa7
1 file changed
Makefile
@@ -1,9 +1,8 @@
1
-# topkg (https://github.com/dbuenzli/topkg) is a small native packager for your lib
2
-# http://erratique.ch/software/topkg/doc/Topkg.html#basics
3
build:
4
- cp pkg/META.in pkg/META
5
- ocamlbuild -package topkg pkg/build.native
6
- ./build.native build
+ jbuilder build
+
+test:
+ jbuilder runtest
7
8
# some boilerplate to publish a new version to GitHub
9
release:
@@ -14,6 +13,6 @@ release:
14
13
git push "git@github.com:reasonml/ReasonNativeProject.git" tag $(version)
15
16
clean:
17
- ocamlbuild -clean
+ rm -rf _build
18
19
-.PHONY: build release
+.PHONY: build release test
0 commit comments