mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-17 04:08:44 +00:00
20 lines
270 B
Text
20 lines
270 B
Text
|
|
(rule
|
||
|
|
(targets Hello.exe)
|
||
|
|
(deps Hello.lama)
|
||
|
|
(mode
|
||
|
|
(promote (until-clean)))
|
||
|
|
(action
|
||
|
|
(setenv
|
||
|
|
LAMA
|
||
|
|
"../runtime32"
|
||
|
|
(run
|
||
|
|
%{project_root}/src/Driver.exe
|
||
|
|
%{deps}
|
||
|
|
-march=x86
|
||
|
|
-I
|
||
|
|
../stdlib/x32
|
||
|
|
-I
|
||
|
|
../runtime32
|
||
|
|
-o
|
||
|
|
%{targets}))))
|