Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
5235 alpine 1
if tup.getconfig("NO_FASM") ~= "" or tup.getconfig("NO_GCC") ~= "" then return end
2
-- tup.rule("echo \"#define LANG_" .. ((tup.getconfig("LANG") == "") and "en" or tup.getconfig("LANG")) .. "\" > lang.h", {"lang.h"})
3
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
4
tup.include(HELPERDIR .. "/use_gcc.lua")
5
tup.include(HELPERDIR .. "/use_sound.lua")
6
LDFLAGS = LDFLAGS .. " -T kolibri.ld"
7
tup.append_table(OBJS, tup.rule("start.asm", "fasm %f %o", "start.o"))
8
 
9
if tup.getconfig("LANG") == "ru"
10
then C_LANG = "LANG_RU"
11
 
12
elseif tup.getconfig("LANG") == "sp"
13
then C_LANG = "LANG_SP" -- just for example, other languages are not implemented
14
 
15
else C_LANG = "LANG_EN" -- default language is English
16
end
17
 
18
CFLAGS = CFLAGS .. " -DRS_KOS -D" .. C_LANG .. " "
19
 
5251 alpine 20
compile_gcc{ "system/kolibri.c", "game/rs/rsmicrolibc.c", "game/rs/rsplatform_kos.c", "game/rs/rsmx.c", "game/rsnoise.c", "game/rssoundgen.c", "game/rsgentex.c",  "game/rsgame.c", "game/rsgamedraw.c", "game/rskos.c", "game/rsgametext.c", "game/rsgamemenu.c"}
5235 alpine 21
link_gcc ("marblematch3")