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") == ""
then
HELPERDIR = "../../../programs"
end
tup.include(HELPERDIR .. "/use_tcc.lua")
TCC="kos32-tcc" LIBS = " -lbox_lib"
CFLAGS = "-I../../develop/ktcc/trunk/libc.obj/include"
LDFLAGS = "-nostdlib ../../develop/ktcc/trunk/bin/lib/crt0.o -L../../develop/ktcc/trunk/bin/lib"
LIBS = "-ltcc -lbox -lc.obj" link_tcc({"passwordgen.c"}, "passwordgen");
COMMAND=string.format("%s %s %s %s %s", TCC, CFLAGS, LDFLAGS , "%f -o %o", LIBS)
tup.rule("passwordgen.c", COMMAND .. tup.getconfig("KPACK_CMD"), "passwordgen")