From 3c9ac3284184742b934d4e9dc382764d24eb0b7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 13 May 2004 10:18:25 +0000 Subject: [PATCH] Added a static library libunzip.a to reduce repeated lines. Hope it builds :) git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7560 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/unzip/Jamfile | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/src/apps/bin/unzip/Jamfile b/src/apps/bin/unzip/Jamfile index 6933193e76..4cd92dbc9f 100644 --- a/src/apps/bin/unzip/Jamfile +++ b/src/apps/bin/unzip/Jamfile @@ -1,7 +1,6 @@ SubDir OBOS_TOP src apps bin unzip ; -BinCommand unzip : - unzip.c +StaticLibrary unzip : crc32.c crctab.c crypt.c @@ -15,13 +14,18 @@ BinCommand unzip : match.c process.c ttyio.c - unreduce.c - unshrink.c zipinfo.c beos.c beosmain.cpp ; +BinCommand unzip : + unzip.c + unreduce.c + unshrink.c + : libunzip.a +; + LinkSharedOSLibs unzip : be ; @@ -38,23 +42,8 @@ LinkSharedOSLibs funzip : be ; BinCommand unzipsfx : unzip.c - crc32.c - crctab.c - crypt.c - extract.c - fileio.c - globals.c - inflate.c - match.c - process.c - ttyio.c - beos.c - beosmain.cpp sfxdefs.c - envargs.c - zipinfo.c - list.c - explode.c + : libunzip.a ; LinkSharedOSLibs unzipsfx : be ;