diff options
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 @@ | |||
20 | TOPDIR :=../.. | 20 | TOPDIR :=../.. |
21 | L_TARGET := libunarchive.a | 21 | L_TARGET := libunarchive.a |
22 | 22 | ||
23 | obj-y := unarchive.o seek_sub_file.o | 23 | obj-y := unarchive.o seek_sub_file.o |
24 | obj-n := | 24 | obj-n := |
25 | obj- := | 25 | obj- := |
26 | 26 | ||
@@ -41,13 +41,17 @@ ifeq ($(CONFIG_CPIO),y) | |||
41 | endif | 41 | endif |
42 | 42 | ||
43 | ifeq ($(CONFIG_RPM2CPIO),y) | 43 | ifeq ($(CONFIG_RPM2CPIO),y) |
44 | obj-y += get_header_cpio.o | 44 | obj-y += get_header_cpio.o |
45 | endif | 45 | endif |
46 | 46 | ||
47 | ifeq ($(CONFIG_TAR),y) | 47 | ifeq ($(CONFIG_TAR),y) |
48 | obj-y += get_header_tar.o | 48 | obj-y += get_header_tar.o |
49 | endif | 49 | endif |
50 | 50 | ||
51 | ifeq ($(CONFIG_UNZIP),y) | ||
52 | obj-y += get_header_zip.o | ||
53 | endif | ||
54 | |||
51 | 55 | ||
52 | # Hand off to toplevel Rules.mak | 56 | # Hand off to toplevel Rules.mak |
53 | include $(TOPDIR)/Rules.mak | 57 | include $(TOPDIR)/Rules.mak |