forked from KolibriOS/kolibrios
b5bb829ff5
Fixed build git-svn-id: svn://kolibrios.org@8802 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
358 B
Lua
10 lines
358 B
Lua
if tup.getconfig("NO_TCC") ~= "" then return end
|
|
|
|
TCC="../../develop/ktcc/trunk/bin/kos32-tcc"
|
|
CFLAGS = "-I../../develop/ktcc/trunk/libc.obj/include"
|
|
|
|
LIBS = "-ltcc -limg -lhttp -lc.obj"
|
|
|
|
COMMAND = string.format("%s %s %s %s ", TCC, CFLAGS, "%f -o %o", LIBS)
|
|
tup.rule({"weather.c", "json/json.c"}, COMMAND .. tup.getconfig("KPACK_CMD"), "weather")
|