Subversion Repositories Kolibri OS

Rev

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

  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.  
  15. tup.rule({"InputBox.asm", extra_inputs = {"lang.inc"}}, "jwasm -zt0 -coff -Fi lang.inc -Fo %o %f " .. tup.getconfig("KPACK_CMD"), "INPUTBOX.OBJ")
  16.