forked from KolibriOS/kolibrios
3cf7852e03
git-svn-id: svn://kolibrios.org@5131 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
398 B
Lua
12 lines
398 B
Lua
if tup.getconfig("NO_GCC") ~= "" then return end
|
|
if tup.getconfig("HELPERDIR") == ""
|
|
then
|
|
if tup.getconfig("NO_NASM") ~= "" then return end -- required for SDL compilation
|
|
HELPERDIR = "../../../../../programs"
|
|
end
|
|
tup.include(HELPERDIR .. "/use_gcc.lua")
|
|
tup.include(HELPERDIR .. "/use_menuetlibc.lua")
|
|
tup.include(HELPERDIR .. "/use_sdl.lua")
|
|
compile_gcc{"fire.c"}
|
|
link_gcc("fire")
|