compile resources only once for all zip binaries

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10106 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
shatty
2004-11-21 09:36:49 +00:00
parent 10d5543e45
commit ca49cc71de
+8 -5
View File
@@ -1,5 +1,8 @@
SubDir OBOS_TOP src apps bin zip ; SubDir OBOS_TOP src apps bin zip ;
local zip_rsrc = [ FGristFiles zip.rsrc ] ;
ResComp $(zip_rsrc) : [ FGristFiles zip.rdef ] ;
StaticLibrary zip : StaticLibrary zip :
zipup.c zipup.c
crypt.c crypt.c
@@ -13,28 +16,28 @@ StaticLibrary zip :
zipfile.c zipfile.c
trees.c trees.c
crctab.c crctab.c
: : zip.rdef : : zip.rsrc
; ;
BinCommand zip : BinCommand zip :
zip.c zip.c
: libzip.a be : zip.rdef : libzip.a be : zip.rsrc
; ;
BinCommand zipcloak : BinCommand zipcloak :
zipcloak.c zipcloak.c
bedefs.c bedefs.c
: libzip.a : zip.rdef : libzip.a : zip.rsrc
; ;
BinCommand zipnote : BinCommand zipnote :
zipnote.c zipnote.c
bedefs.c bedefs.c
: libzip.a be : zip.rdef : libzip.a be : zip.rsrc
; ;
BinCommand zipsplit : BinCommand zipsplit :
zipsplit.c zipsplit.c
bedefs.c bedefs.c
: libzip.a be : zip.rdef : libzip.a be : zip.rsrc
; ;