diff options
Diffstat (limited to 'archival/libunarchive/Kbuild')
-rw-r--r-- | archival/libunarchive/Kbuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/archival/libunarchive/Kbuild b/archival/libunarchive/Kbuild new file mode 100644 index 000000000..c5f1bfbfe --- /dev/null +++ b/archival/libunarchive/Kbuild | |||
@@ -0,0 +1,59 @@ | |||
1 | # Makefile for busybox | ||
2 | # | ||
3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> | ||
4 | # | ||
5 | # Licensed under the GPL v2 or later, see the file LICENSE in this tarball. | ||
6 | |||
7 | lib-y:= \ | ||
8 | \ | ||
9 | data_skip.o \ | ||
10 | data_extract_all.o \ | ||
11 | data_extract_to_stdout.o \ | ||
12 | data_extract_to_buffer.o \ | ||
13 | \ | ||
14 | filter_accept_all.o \ | ||
15 | filter_accept_list.o \ | ||
16 | filter_accept_reject_list.o \ | ||
17 | \ | ||
18 | header_skip.o \ | ||
19 | header_list.o \ | ||
20 | header_verbose_list.o \ | ||
21 | \ | ||
22 | archive_xread_all_eof.o \ | ||
23 | \ | ||
24 | seek_by_char.o \ | ||
25 | seek_by_jump.o \ | ||
26 | \ | ||
27 | data_align.o \ | ||
28 | find_list_entry.o \ | ||
29 | open_transformer.o \ | ||
30 | init_handle.o | ||
31 | |||
32 | GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o | ||
33 | DPKG_FILES:= \ | ||
34 | get_header_ar.o \ | ||
35 | unpack_ar_archive.o \ | ||
36 | get_header_tar.o \ | ||
37 | filter_accept_list_reassign.o | ||
38 | |||
39 | lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o | ||
40 | lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o | ||
41 | lib-$(CONFIG_UNLZMA) += decompress_unlzma.o | ||
42 | lib-$(CONFIG_CPIO) += get_header_cpio.o | ||
43 | lib-$(CONFIG_DPKG) += $(DPKG_FILES) | ||
44 | lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) | ||
45 | lib-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o | ||
46 | lib-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o | ||
47 | lib-$(CONFIG_FEATURE_DEB_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o | ||
48 | lib-$(CONFIG_GUNZIP) += $(GUNZIP_FILES) | ||
49 | lib-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += decompress_uncompress.o | ||
50 | lib-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o | ||
51 | lib-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o | ||
52 | lib-$(CONFIG_TAR) += get_header_tar.o | ||
53 | lib-$(CONFIG_FEATURE_TAR_BZIP2) += decompress_bunzip2.o get_header_tar_bz2.o | ||
54 | lib-$(CONFIG_FEATURE_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o | ||
55 | lib-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o | ||
56 | lib-$(CONFIG_FEATURE_TAR_COMPRESS) += decompress_uncompress.o | ||
57 | lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o | ||
58 | lib-$(CONFIG_UNZIP) += $(GUNZIP_FILES) | ||
59 | lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o | ||