Files
kolibrios/programs/other/outdated/param/Tupfile.lua
Andrew d7a97c85eb
Some checks failed
Build system / Check kernel codestyle (pull_request) Successful in 2m35s
Build system / Build (pull_request) Failing after 3m14s
outdated/param: Post-SVN tidy
- Move source code from `trunk` into root directory.
- Checked build files and update ASM include paths.
2025-11-18 14:24:22 +00:00

8 lines
456 B
Lua

if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir())
tup.rule("echo lang fix " .. ((tup.getconfig("LANG") == "") and "en_US" or tup.getconfig("LANG")) .. " > %o", {"lang.inc"})
tup.rule({"param.asm", extra_inputs = {"lang.inc"}}, FASM .. " %f %o " .. tup.getconfig("KPACK_CMD"), "param")