From 2ed999004a90f9b7fccf58f78a72ac4ce2cd87df Mon Sep 17 00:00:00 2001 From: turbocat Date: Wed, 12 Jan 2022 19:18:50 +0000 Subject: [PATCH] PasswordGen: now uses autoimport(fixed tup). git-svn-id: svn://kolibrios.org@9627 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/other/PasswordGen/Tupfile.lua | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/programs/other/PasswordGen/Tupfile.lua b/programs/other/PasswordGen/Tupfile.lua index a150524145..2b6e843172 100644 --- a/programs/other/PasswordGen/Tupfile.lua +++ b/programs/other/PasswordGen/Tupfile.lua @@ -1,10 +1,10 @@ -if tup.getconfig("NO_TCC") ~= "" then return end - -TCC="kos32-tcc" -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" -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") +if tup.getconfig("NO_TCC") ~= "" then return end +if tup.getconfig("HELPERDIR") == "" +then + HELPERDIR = "../../../programs" +end +tup.include(HELPERDIR .. "/use_tcc.lua") + +LIBS = " -lbox_lib" + +link_tcc({"passwordgen.c"}, "passwordgen");