forked from KolibriOS/kolibrios
11 lines
423 B
Lua
11 lines
423 B
Lua
|
if tup.getconfig("NO_TCC") ~= "" then return end
|
||
|
|
||
|
TCC="kos32-tcc"
|
||
|
|
||
|
CFLAGS = "-I../../develop/ktcc/trunk/libc/include"
|
||
|
LDFLAGS = "-nostdlib ../../develop/ktcc/trunk/bin/lib/start.o -L../../develop/ktcc/trunk/bin/lib -Ljson"
|
||
|
LIBS = "-ljson -lck -limg -lhttp"
|
||
|
|
||
|
COMMAND=string.format("%s %s %s %s %s ", TCC, CFLAGS, "%f -o %o", LDFLAGS, LIBS)
|
||
|
tup.rule("weather.c", COMMAND .. tup.getconfig("KPACK_CMD"), "weather")
|