diff options
Diffstat (limited to 'script.it/dune')
-rwxr-xr-x | script.it/dune | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/script.it/dune b/script.it/dune new file mode 100755 index 0000000..1536f2b --- /dev/null +++ b/script.it/dune @@ -0,0 +1,26 @@ +(executables + (names script) + (libraries + js_of_ocaml + brr + brr.note + vg + vg.htmlc + messages + messages_json + worker + shapes + tools + elements + blog + path + ) + (modes js) + (preprocess (pps ppx_hash)) + (link_flags (:standard -no-check-prims)) + ) + +(rule + (targets script.js) + (deps script.bc.js) + (action (run cp %{deps} %{targets}))) |