Files
kolibrios/programs/use_ob07.lua
hrigar 21abcd2635
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m2s
Build system / Build (pull_request) Successful in 16m32s
Remove touch workaround
Signed-off-by: hrigar <h4gar02@protonmail.com>
2026-02-26 17:14:19 +00:00

8 lines
301 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"), output)
end