kolibrios-fun/programs/use_tcc.lua

20 lines
597 B
Lua
Raw Permalink Normal View History

TCC = "kos32-tcc -B" .. tup.getcwd().. "/develop/ktcc/trunk/bin"
CFLAGS = "-I" .. tup.getcwd().. "/develop/ktcc/trunk/libc.obj/include "
LFLAGS = ""
LIBS = ""
OBJS = {}
function compile_tcc(input, output)
if not output then output = '%B.o' end
tup.append_table(OBJS,
tup.foreach_rule(input, TCC .. " -c " .. CFLAGS .. " %f -o %o", output)
)
end
function link_tcc(input, output)
if not output then input,output = OBJS,input end
tup.rule(input, TCC .. " " .. CFLAGS .. " " .. LFLAGS .. " %f -o %o " .. LIBS .. " " .. tup.getconfig("KPACK_CMD"), output)
end