mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-14 10:48:55 +00:00
19 lines
270 B
Text
19 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}))))
|