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

View file

@ -1,7 +1,7 @@
(rule
(targets Expressions.x32.exe)
(deps (:lama Expressions.lama) ../runtime32/runtime.a)
(deps (:lama Expressions.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
(action
@ -21,7 +21,7 @@
(rule
(targets Expressions.x64.exe)
(deps (:lama Expressions.lama) ../runtime/runtime.a)
(deps (:lama Expressions.lama) ../runtime/runtime.a ../stdlib/x64/Fun.i)
(mode
(promote (until-clean)))
(action
@ -41,7 +41,7 @@
(rule
(targets Functions.x32.exe)
(deps (:lama Functions.lama) ../runtime32/runtime.a)
(deps (:lama Functions.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
(action
@ -61,7 +61,7 @@
(rule
(targets Functions.x64.exe)
(deps (:lama Functions.lama) ../runtime/runtime.a)
(deps (:lama Functions.lama) ../runtime/runtime.a ../stdlib/x64/Fun.i)
(mode
(promote (until-clean)))
(action
@ -81,7 +81,7 @@
(rule
(targets Hello.x32.exe)
(deps (:lama Hello.lama) ../runtime32/runtime.a)
(deps (:lama Hello.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
(action
@ -101,7 +101,7 @@
(rule
(targets Hello.x64.exe)
(deps (:lama Hello.lama) ../runtime/runtime.a)
(deps (:lama Hello.lama) ../runtime/runtime.a ../stdlib/x64/Fun.i)
(mode
(promote (until-clean)))
(action
@ -121,7 +121,7 @@
(rule
(targets PatternMatching.x32.exe)
(deps (:lama PatternMatching.lama) ../runtime32/runtime.a)
(deps (:lama PatternMatching.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
(action
@ -141,7 +141,7 @@
(rule
(targets PatternMatching.x64.exe)
(deps (:lama PatternMatching.lama) ../runtime/runtime.a)
(deps (:lama PatternMatching.lama) ../runtime/runtime.a ../stdlib/x64/Fun.i)
(mode
(promote (until-clean)))
(action
@ -161,7 +161,7 @@
(rule
(targets Values.x32.exe)
(deps (:lama Values.lama) ../runtime32/runtime.a)
(deps (:lama Values.lama) ../runtime32/runtime.a ../stdlib/x32/Fun.i)
(mode
(promote (until-clean)))
(action
@ -181,7 +181,7 @@
(rule
(targets Values.x64.exe)
(deps (:lama Values.lama) ../runtime/runtime.a)
(deps (:lama Values.lama) ../runtime/runtime.a ../stdlib/x64/Fun.i)
(mode
(promote (until-clean)))
(action

View file

@ -5,7 +5,7 @@ let demos = ["Expressions"; "Functions"; "Hello"; "PatternMatching"; "Values"]
let template = {|
(rule
(targets %DEMO%.exe)
(deps (:lama %DEMOSRC%.lama) %RUNTIME%/runtime.a)
(deps (:lama %DEMOSRC%.lama) %RUNTIME%/runtime.a %STDLIB%/Fun.i)
(mode
(promote (until-clean)))
(action