Subversion Repositories Kolibri OS

Rev

Rev 7081 | Go to most recent revision | Blame | Compare with Previous | 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", extra_inputs = {"lang.inc"}}, "jwasm -zt0 -coff -Fi lang.inc %f ", "RUN.o")
  14. tup.rule("RUN.o", "kos32-ld -T LScript.x -o %o %f -L ../../../../contrib/sdk/lib -l KolibriOS && kos32-objcopy %o -O binary -j .all","RUN")