diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2002-01-02 13:52:26 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2002-01-02 13:52:26 +0000 |
commit | 87ac7028e01cdc4f504ea558a6ae3d086ed1bf2b (patch) | |
tree | 4f406c877f88a013c4e1dc650ac312640a95cb00 /archival/libunarchive/Makefile | |
parent | 438803311b67c6337ea97476e97336e027ef9a3a (diff) |
unzip applet by Laurence Anderson
----------------------------------------------------------------------
Diffstat (limited to 'archival/libunarchive/Makefile')
-rw-r--r-- | archival/libunarchive/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/archival/libunarchive/Makefile b/archival/libunarchive/Makefile index 0c7219dcd..a8409a432 100644 --- a/archival/libunarchive/Makefile +++ b/archival/libunarchive/Makefile @@ -20,7 +20,7 @@ TOPDIR :=../.. L_TARGET := libunarchive.a -obj-y := unarchive.o seek_sub_file.o +obj-y := unarchive.o seek_sub_file.o obj-n := obj- := @@ -41,13 +41,17 @@ ifeq ($(CONFIG_CPIO),y) endif ifeq ($(CONFIG_RPM2CPIO),y) - obj-y += get_header_cpio.o + obj-y += get_header_cpio.o endif ifeq ($(CONFIG_TAR),y) obj-y += get_header_tar.o endif +ifeq ($(CONFIG_UNZIP),y) + obj-y += get_header_zip.o +endif + # Hand off to toplevel Rules.mak include $(TOPDIR)/Rules.mak |