File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22# ocamlbuild.
33# Docs: https://github.com/ocaml/ocamlbuild/blob/master/manual/manual.adoc
44
5- build :
6- rebuild -use-ocamlfind src/index.native
5+ all : byte library
6+
7+ byte :
8+ rebuild -use-ocamlfind src/ReasonNativeProject.byte
9+
10+ library :
11+ rebuild -use-ocamlfind src/ReasonNativeProject.cma
12+ rebuild -use-ocamlfind src/ReasonNativeProject.cmxa
713
814# some boilerplate to publish a new version to GitHub
915release :
@@ -15,6 +21,6 @@ release:
1521 git push " git@github.com:reasonml/ReasonNativeProject.git" tag $(version )
1622
1723clean :
18- rm -rf _build index.native
24+ rm -rf _build ReasonNativeProject.byte
1925
2026.PHONY : build release
File renamed without changes.
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ opam switch "${OCAML_VERSION}"
99eval ` opam config env`
1010opam update
1111opam pin add -y ReasonNativeProject .
12- make
13- ./index.native
12+ make byte
13+ ./ReasonNativeProject.byte
1414git diff --exit-code
You can’t perform that action at this time.
0 commit comments