Subversion Repositories Kolibri OS

Rev

Rev 7069 | Blame | Last modification | View Log | Download | RSS feed

  1. if     tup.getconfig("LANG") == "it" then
  2.   tup.definerule{command = "echo LANG_IT = 1 > lang.inc", outputs = {"lang.inc"}}
  3. elseif tup.getconfig("LANG") == "sp" then
  4.   tup.definerule{command = "echo LANG_SP = 1 > lang.inc", outputs = {"lang.inc"}}
  5. elseif tup.getconfig("LANG") == "ru" then
  6.   tup.definerule{command = "echo LANG_RU = 1 > lang.inc", outputs = {"lang.inc"}}
  7. elseif tup.getconfig("LANG") == "en" then
  8.   tup.definerule{command = "echo LANG_EN = 1 > lang.inc", outputs = {"lang.inc"}}
  9. else
  10.   tup.definerule{command = "echo LANG_EN = 1 > lang.inc", outputs = {"lang.inc"}}
  11. end
  12.  
  13. tup.rule("RUN.asm", "jwasm -zt0 -coff -Fi lang.inc %f -Fo %o", "RUN.obj")
  14. tup.rule("RUN.obj", "ld -T LScript.x %f -o %o -L ../../../../contrib/sdk/lib -l KolibriOS", "RUN")
  15. tup.rule("RUN", "objcopy %f -O binary -j .all", "RUN")