kolibrios/programs/other/Weather/Tupfile.lua
turbocat 92c44fb1c7 Weather:
- Added to autobuild
- Updated weather.json config path

git-svn-id: svn://kolibrios.org@8586 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-02-10 20:02:54 +00:00

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