kolibrios-fun/programs/other/tte/Tupfile.lua

11 lines
397 B
Lua
Raw Normal View History

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")
CFLAGS = CFLAGS .. " -Dasm=__asm__ -std=c99 -DGCC_BUILD"
LDFLAGS = LDFLAGS .. " --subsystem native"
compile_gcc{"tte.c", "notify.c", "getline.c"}
link_gcc("tte")