diff options
Diffstat (limited to 'archival/libunarchive/Kbuild')
-rw-r--r-- | archival/libunarchive/Kbuild | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/archival/libunarchive/Kbuild b/archival/libunarchive/Kbuild index 468a7e82a..364f9174c 100644 --- a/archival/libunarchive/Kbuild +++ b/archival/libunarchive/Kbuild | |||
@@ -32,36 +32,20 @@ DPKG_FILES:= \ | |||
32 | get_header_tar.o \ | 32 | get_header_tar.o \ |
33 | filter_accept_list_reassign.o | 33 | filter_accept_list_reassign.o |
34 | 34 | ||
35 | lib-$(CONFIG_RPM) += open_transformer.o | ||
36 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += open_transformer.o | ||
37 | lib-$(CONFIG_FEATURE_TAR_LZMA) += open_transformer.o | ||
38 | lib-$(CONFIG_FEATURE_TAR_GZIP) += open_transformer.o | ||
39 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += open_transformer.o | ||
40 | lib-$(CONFIG_FEATURE_DEB_TAR_GZ) += open_transformer.o | ||
41 | lib-$(CONFIG_FEATURE_DEB_TAR_BZ2) += open_transformer.o | ||
42 | lib-$(CONFIG_FEATURE_DEB_TAR_LZMA) += open_transformer.o | ||
43 | |||
44 | lib-$(CONFIG_FEATURE_MODPROBE_SMALL_ZIPPED) += open_transformer.o decompress_unzip.o decompress_bunzip2.o | ||
45 | |||
46 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o | 35 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o |
47 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o | 36 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o |
48 | lib-$(CONFIG_UNLZMA) += decompress_unlzma.o | 37 | lib-$(CONFIG_UNLZMA) += decompress_unlzma.o |
49 | lib-$(CONFIG_CPIO) += get_header_cpio.o | 38 | lib-$(CONFIG_CPIO) += get_header_cpio.o |
50 | lib-$(CONFIG_DPKG) += $(DPKG_FILES) | 39 | lib-$(CONFIG_DPKG) += $(DPKG_FILES) |
51 | lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) | 40 | lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) |
52 | lib-$(CONFIG_FEATURE_DEB_TAR_GZ) += decompress_unzip.o get_header_tar_gz.o | ||
53 | lib-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o | ||
54 | lib-$(CONFIG_FEATURE_DEB_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o | ||
55 | lib-$(CONFIG_GUNZIP) += decompress_unzip.o | 41 | lib-$(CONFIG_GUNZIP) += decompress_unzip.o |
56 | lib-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += decompress_uncompress.o | ||
57 | lib-$(CONFIG_RPM2CPIO) += decompress_unzip.o get_header_cpio.o | 42 | lib-$(CONFIG_RPM2CPIO) += decompress_unzip.o get_header_cpio.o |
58 | lib-$(CONFIG_RPM) += decompress_unzip.o get_header_cpio.o | 43 | lib-$(CONFIG_RPM) += open_transformer.o decompress_unzip.o get_header_cpio.o |
59 | lib-$(CONFIG_FEATURE_RPM_BZ2) += decompress_bunzip2.o | ||
60 | lib-$(CONFIG_TAR) += get_header_tar.o | 44 | lib-$(CONFIG_TAR) += get_header_tar.o |
61 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += decompress_bunzip2.o get_header_tar_bz2.o | ||
62 | lib-$(CONFIG_FEATURE_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o | ||
63 | lib-$(CONFIG_FEATURE_TAR_GZIP) += decompress_unzip.o get_header_tar_gz.o | ||
64 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += decompress_uncompress.o | ||
65 | lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o | 45 | lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o |
66 | lib-$(CONFIG_UNZIP) += decompress_unzip.o | 46 | lib-$(CONFIG_UNZIP) += decompress_unzip.o |
47 | lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o | ||
48 | lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_unzip.o get_header_tar_gz.o | ||
49 | lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o | ||
50 | lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o | ||
67 | lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o | 51 | lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o |