this repo has no description

ott: fix for building on Windows (without symlink)

Changed files
+5
packages
ott
ott.0.32
ott.0.33
+2
packages/ott/ott.0.32/opam
···
build: [
[make "world"]
[make "ott.install"]
+
["rm" "src/ott"] { os = "win32" }
+
["cp" "src/ott.opt" "src/ott"] { os = "win32" }
]
run-test: [
[make "-C" "tests/menhir_tests/test_if"]
+3
packages/ott/ott.0.33/opam
···
build: [
[make "world"] { ocaml:native }
[make "world.byt"] { !ocaml:native }
+
["rm" "src/ott"] {os = "win32"}
+
["cp" "src/ott.opt" "src/ott"] {os = "win32" & ocaml:native}
+
["cp" "src/ott.byte" "src/ott"] {os = "win32" & !ocaml:native}
[make "ott.install"]
]
run-test: [