Minor fixes of minor tools

Signed-off-by: Kakadu <Kakadu@pm.me>
This commit is contained in:
Kakadu 2024-09-05 17:32:45 +03:00
parent f6277da16e
commit d3d2535f97
12 changed files with 67 additions and 27 deletions

9
byterun/dune Normal file
View file

@ -0,0 +1,9 @@
(rule
(target byterun.exe)
(deps
(:main byterun.c)
(:runtime ../runtime/runtime.a))
(mode
(promote (until-clean)))
(action
(run gcc -g %{main} %{runtime} -o %{target})))