From 6738df60600b3a166fefb214bad9f295d3800e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Wed, 12 May 2004 08:24:55 +0000 Subject: [PATCH] Added a static library libzip.a to reduce repeated lines git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7534 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/zip/Jamfile | 49 ++++++++-------------------------------- 1 file changed, 9 insertions(+), 40 deletions(-) diff --git a/src/apps/bin/zip/Jamfile b/src/apps/bin/zip/Jamfile index 09673e5c2f..f3debe17a7 100644 --- a/src/apps/bin/zip/Jamfile +++ b/src/apps/bin/zip/Jamfile @@ -1,7 +1,6 @@ SubDir OBOS_TOP src apps bin zip ; -BinCommand zip : - zip.c +StaticLibrary zip : zipup.c crypt.c ttyio.c @@ -16,61 +15,31 @@ BinCommand zip : crctab.c ; +BinCommand zip : + zip.c + : libzip.a +; + LinkSharedOSLibs zip : be ; BinCommand zipcloak : zipcloak.c - zipup.c - crypt.c - ttyio.c - beos.c - globals.c - deflate.c - fileio.c - util.c - crc32.c - zipfile.c - trees.c - crctab.c bedefs.c + : libzip.a ; -LinkSharedOSLibs zipcloak : be ; - BinCommand zipnote : zipnote.c - zipup.c - crypt.c - ttyio.c - beos.c - globals.c - deflate.c - fileio.c - util.c - crc32.c - zipfile.c - trees.c - crctab.c bedefs.c + : libzip.a ; LinkSharedOSLibs zipnote : be ; BinCommand zipsplit : zipsplit.c - zipup.c - crypt.c - ttyio.c - beos.c - globals.c - deflate.c - fileio.c - util.c - crc32.c - zipfile.c - trees.c - crctab.c bedefs.c + : libzip.a ; LinkSharedOSLibs zipsplit : be ;