Subversion Repositories Kolibri OS

Rev

Rev 7454 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7452 0CodErr 1
if tup.getconfig('NO_JWASM') ~= "" then return end
2
 
3
if     tup.getconfig("LANG") == "it" then
4
  tup.definerule{command = "echo LANG_IT = 1 > lang.inc", outputs = {"lang.inc"}}
5
elseif tup.getconfig("LANG") == "sp" then
6
  tup.definerule{command = "echo LANG_SP = 1 > lang.inc", outputs = {"lang.inc"}}
7
elseif tup.getconfig("LANG") == "ru" then
8
  tup.definerule{command = "echo LANG_RU = 1 > lang.inc", outputs = {"lang.inc"}}
9
elseif tup.getconfig("LANG") == "en" then
10
  tup.definerule{command = "echo LANG_EN = 1 > lang.inc", outputs = {"lang.inc"}}
11
else
12
  tup.definerule{command = "echo LANG_EN = 1 > lang.inc", outputs = {"lang.inc"}}
13
end
14
 
9797 dunkaist 15
tup.rule({"InputBox.asm", extra_inputs = {"lang.inc"}}, "jwasm -zt0 -coff -Fi lang.inc -Fo %o %f " .. tup.getconfig("KPACK_CMD"), "INPUTBOX.OBJ")