kolibrios/programs/develop/backy/gcc_version/Tupfile.lua
maxcodehack 9c41b23939 fix autobuild
git-svn-id: svn://kolibrios.org@8468 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-12-22 19:52:08 +00:00

13 lines
380 B
Lua
Executable File

if tup.getconfig("NO_GCC") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_gcc.lua")
tup.include(HELPERDIR .. "/use_newlib.lua")
if tup.getconfig("LANG") == "ru"
then CFLAGS = CFLAGS .. " -Dlang_ru"
else CFLAGS = CFLAGS .. " -Dlang_en"
end
compile_gcc{"Backy.c"}
link_gcc("Backy")