Files
kolibrios/programs/use_ob07.lua
hrigar 4f81e78b9c
Some checks failed
Build system / Check kernel codestyle (pull_request) Has been cancelled
Build system / Build (pull_request) Has been cancelled
fb2reader: add to oberon07 build system
Signed-off-by: hrigar <h4gar02@protonmail.com>
2026-02-23 20:04:32 +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