PasswordGen: now uses autoimport(fixed tup).

git-svn-id: svn://kolibrios.org@9627 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat 2022-01-12 19:18:50 +00:00
parent aabde89eae
commit 2ed999004a

View File

@ -1,10 +1,10 @@
if tup.getconfig("NO_TCC") ~= "" then return end if tup.getconfig("NO_TCC") ~= "" then return end
if tup.getconfig("HELPERDIR") == ""
TCC="kos32-tcc" then
CFLAGS = "-I../../develop/ktcc/trunk/libc.obj/include" HELPERDIR = "../../../programs"
LDFLAGS = "-nostdlib ../../develop/ktcc/trunk/bin/lib/crt0.o -L../../develop/ktcc/trunk/bin/lib" end
tup.include(HELPERDIR .. "/use_tcc.lua")
LIBS = "-ltcc -lbox -lc.obj"
COMMAND=string.format("%s %s %s %s %s", TCC, CFLAGS, LDFLAGS , "%f -o %o", LIBS) LIBS = " -lbox_lib"
tup.rule("passwordgen.c", COMMAND .. tup.getconfig("KPACK_CMD"), "passwordgen") link_tcc({"passwordgen.c"}, "passwordgen");