mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
Add `install` stanza to `dune` files to install std and runtime to expected directories Delete manual copying from `install` scenario in `Makefile`
13 lines
248 B
Text
13 lines
248 B
Text
(rule
|
|
(target runtime.a)
|
|
(mode
|
|
(promote (until-clean)))
|
|
(deps Makefile gc.c gc.h runtime_common.h runtime.c runtime.h printf.S)
|
|
(action
|
|
(run make)))
|
|
|
|
(install
|
|
(section share)
|
|
(files
|
|
(runtime.a as x64/runtime.a)
|
|
(Std.i as x64/Std.i)))
|