Files
kolibrios/programs/use_ob07.lua
hrigar 6ccc7e27fe
Some checks failed
Build system / Build (pull_request) Failing after 2s
Build system / Check kernel codestyle (pull_request) Successful in 30s
fb2reader: add to oberon07 build system
Signed-off-by: hrigar <h4gar02@protonmail.com>
2026-02-24 22:07:47 +05:30

8 lines
319 B
Lua

OB07 = tup.getcwd() .. "/develop/oberon07/compiler"
OB07_FLAGS = "-stk 1 -nochk a"
function build_ob07(input, output, extra_flags)
extra_flags = extra_flags or ""
tup.rule(input, OB07 .. " %f kosexe -out %o " .. OB07_FLAGS .. " " .. extra_flags .. " " .. tup.getconfig("KPACK_CMD") .. " && touch %o", output)
end