lama_byterun/runtime32/dune
deker104 91b18d023b fix: update build files
Add `install` stanza to `dune` files to install std and runtime to
expected directories

Delete manual copying from `install` scenario in `Makefile`
2024-11-12 07:43:17 +00:00

15 lines
267 B
Text

(rule
(target runtime.a)
(enabled_if
(= %{system} "linux"))
(mode
(promote (until-clean)))
(deps Makefile gc_runtime.s runtime.c runtime.h)
(action
(run make -j2)))
(install
(section share)
(files
(runtime.a as x32/runtime.a)
(Std.i as x32/Std.i)))