2018-10-13 09:22:43 +02:00
|
|
|
if tup.getconfig('NO_JWASM') ~= "" then return end
|
|
|
|
|
2024-06-02 05:51:22 +02:00
|
|
|
if tup.getconfig("LANG") == "it_IT" then
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.definerule{command = "echo LANG_IT = 1 > %o", outputs = {"lang.inc"}}
|
2024-06-02 05:51:22 +02:00
|
|
|
elseif tup.getconfig("LANG") == "es_ES" then
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.definerule{command = "echo LANG_SP = 1 > %o", outputs = {"lang.inc"}}
|
2024-06-02 05:51:22 +02:00
|
|
|
elseif tup.getconfig("LANG") == "ru_RU" then
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.definerule{command = "echo LANG_RU = 1 > %o", outputs = {"lang.inc"}}
|
2024-06-02 05:51:22 +02:00
|
|
|
elseif tup.getconfig("LANG") == "en_US" then
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.definerule{command = "echo LANG_EN = 1 > %o", outputs = {"lang.inc"}}
|
2018-10-13 09:22:43 +02:00
|
|
|
else
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.definerule{command = "echo LANG_EN = 1 > %o", outputs = {"lang.inc"}}
|
2018-10-13 09:22:43 +02:00
|
|
|
end
|
|
|
|
|
2024-05-21 16:45:21 +02:00
|
|
|
tup.rule({"InputBox.asm", extra_inputs = {"lang.inc"}}, "jwasm -I" .. tup.getvariantdir() .. " -zt0 -coff -Fi lang.inc -Fo %o %f " .. tup.getconfig("KPACK_CMD"), "INPUTBOX.OBJ")
|