kolibrios-fun/programs/other/Weather/Tupfile.lua
turbocat b5bb829ff5 Weather:
Fixed build

git-svn-id: svn://kolibrios.org@8802 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-06-10 15:06:01 +00:00

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")