mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-11 17:44:09 +03:00
9 lines
283 B
Lua
9 lines
283 B
Lua
|
if tup.getconfig("NO_GCC") ~= "" then return end
|
||
|
if tup.getconfig("HELPERDIR") == ""
|
||
|
then
|
||
|
HELPERDIR = "../../../../programs"
|
||
|
end
|
||
|
tup.include(HELPERDIR .. "/use_gcc.lua")
|
||
|
CFLAGS = CFLAGS_OPTIMIZE_SPEED .. " -o minimp3.obj -nostdlib -fwhole-program"
|
||
|
compile_gcc{"minimp3.c"}
|