forked from KolibriOS/kolibrios
92c44fb1c7
- Added to autobuild - Updated weather.json config path git-svn-id: svn://kolibrios.org@8586 a494cfbc-eb01-0410-851d-a64ba20cac60
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")
|