1SubDir HAIKU_TOP src bin unzip ;
2
3StaticLibrary libunzip.a : 
4	crc32.c
5	ttyio.c
6	crctab.c
7	crypt.c
8	envargs.c
9	explode.c
10	extract.c
11	fileio.c
12	globals.c
13	inflate.c
14	list.c
15	match.c
16	process.c
17	zipinfo.c
18	beos.c
19	beosmain.cpp
20;
21
22BinCommand unzip :
23	unzip.c
24	unreduce.c
25	unshrink.c
26	: libunzip.a be : unzip.rdef
27;
28
29BinCommand funzip :
30	funzip.c
31	cryptf.c
32	globalsf.c
33	inflatef.c
34	crc32.c
35	ttyio.c
36	: be : unzip.rdef
37;
38
39BinCommand unzipsfx :
40	unzip.c
41	sfxdefs.c
42	: libunzip.a be : unzip.rdef
43;
44
45{
46	MakeLocatePlatform <bin>zipgrep ;
47	Shell <bin>zipgrep : zipgrep ;
48}
49