Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6196 → Rev 7134

/programs/games/soko/trunk/MACROS.INC
File deleted
\ No newline at end of file
/programs/games/soko/trunk/SOKO.ASM
29,11 → 29,9
 
format binary as ""
 
include '../../../macros.inc' ; decrease code size (optional)
include 'macros.inc' ; decrease code size (optional)
include 'CELLTYPE.INC' ; object identifiers
;include 'debug.inc'
;lang equ ru ; russian interface; english if undefined
include 'lang.inc'
 
CUR_DIR equ '/sys/games/' ; change it to appropriate path
 
/programs/games/soko/trunk/Tupfile.lua
1,3 → 1,4
if tup.getconfig("NO_FASM") ~= "" then return end
tup.rule("echo lang fix " .. ((tup.getconfig("LANG") == "") and "en" or tup.getconfig("LANG")) .. " > lang.inc", {"lang.inc"})
tup.rule({"SOKO.ASM", extra_inputs = {"lang.inc"}}, "fasm %f %o " .. tup.getconfig("KPACK_CMD"), "SOKO")
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
tup.rule("SOKO.ASM", FASM .. " -dlang=" .. tup.getconfig("LANG") .. " %f %o " .. tup.getconfig("KPACK_CMD"), "SOKO")