mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
11 lines
283 B
Text
11 lines
283 B
Text
(rule
|
|
(target byterun.exe)
|
|
(deps
|
|
(:main src/cli.c src/interpreter.c)
|
|
(:parser src/parser.c)
|
|
(:utils src/utils.c src/types.c src/stack.c)
|
|
(:runtime ../runtime/runtime.a))
|
|
(mode
|
|
(promote (until-clean)))
|
|
(action
|
|
(run gcc -g -Iinclude/ %{main} %{runtime} -o %{target})))
|