Files
kolibrios/programs/games/solitaires/Tupfile.lua
Burer 8d55a1cfc8
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m28s
Build system / Build (pull_request) Successful in 9m35s
games/solitaries: fix build, part 2
2026-02-27 20:55:35 +02:00

8 lines
429 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("solitaires.asm", FASM .. " %f %o " .. tup.getconfig("KPACK_CMD"), "solitaires")