Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/archival/libunarchive/Kbuild

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 532 by niro, Sat Sep 1 22:45:15 2007 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 4  Line 4 
4  #  #
5  # Licensed under the GPL v2 or later, see the file LICENSE in this tarball.  # Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6    
7  lib-y:= \  lib-y:=
8    
9    COMMON_FILES:= \
10  \  \
11   data_skip.o \   data_skip.o \
12   data_extract_all.o \   data_extract_all.o \
13   data_extract_to_stdout.o \   data_extract_to_stdout.o \
  data_extract_to_buffer.o \  
14  \  \
15   filter_accept_all.o \   filter_accept_all.o \
16   filter_accept_list.o \   filter_accept_list.o \
# Line 19  lib-y:= \ Line 20  lib-y:= \
20   header_list.o \   header_list.o \
21   header_verbose_list.o \   header_verbose_list.o \
22  \  \
  archive_xread_all_eof.o \  
 \  
23   seek_by_read.o \   seek_by_read.o \
24   seek_by_jump.o \   seek_by_jump.o \
25  \  \
26   data_align.o \   data_align.o \
27   find_list_entry.o \   find_list_entry.o \
  open_transformer.o \  
28   init_handle.o   init_handle.o
29    
 GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o  
30  DPKG_FILES:= \  DPKG_FILES:= \
31   get_header_ar.o \   get_header_ar.o \
32   unpack_ar_archive.o \   unpack_ar_archive.o \
33   get_header_tar.o \   get_header_tar.o \
34   filter_accept_list_reassign.o   filter_accept_list_reassign.o
35    
36  lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o  lib-$(CONFIG_AR)                        += get_header_ar.o unpack_ar_archive.o
37  lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o  lib-$(CONFIG_BUNZIP2)                   += decompress_bunzip2.o
38  lib-$(CONFIG_UNLZMA) += decompress_unlzma.o  lib-$(CONFIG_UNLZMA)                    += decompress_unlzma.o
39  lib-$(CONFIG_CPIO) += get_header_cpio.o  lib-$(CONFIG_CPIO)                      += get_header_cpio.o
40  lib-$(CONFIG_DPKG) += $(DPKG_FILES)  lib-$(CONFIG_DPKG)                      += $(DPKG_FILES)
41  lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)  lib-$(CONFIG_DPKG_DEB)                  += $(DPKG_FILES)
42  lib-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o  lib-$(CONFIG_GUNZIP)                    += decompress_unzip.o
43  lib-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o  lib-$(CONFIG_RPM2CPIO)                  += decompress_unzip.o get_header_cpio.o
44  lib-$(CONFIG_FEATURE_DEB_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o  lib-$(CONFIG_RPM)                       += open_transformer.o decompress_unzip.o get_header_cpio.o
45  lib-$(CONFIG_GUNZIP) += $(GUNZIP_FILES)  lib-$(CONFIG_TAR)                       += get_header_tar.o
46  lib-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += decompress_uncompress.o  lib-$(CONFIG_UNCOMPRESS)                += decompress_uncompress.o
47  lib-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o  lib-$(CONFIG_UNZIP)                     += decompress_unzip.o
48  lib-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o  lib-$(CONFIG_FEATURE_SEAMLESS_Z)        += open_transformer.o decompress_uncompress.o
49  lib-$(CONFIG_TAR) += get_header_tar.o  lib-$(CONFIG_FEATURE_SEAMLESS_GZ)       += open_transformer.o decompress_unzip.o get_header_tar_gz.o
50  lib-$(CONFIG_FEATURE_TAR_BZIP2) += decompress_bunzip2.o get_header_tar_bz2.o  lib-$(CONFIG_FEATURE_SEAMLESS_BZ2)      += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o
51  lib-$(CONFIG_FEATURE_TAR_LZMA) += decompress_unlzma.o get_header_tar_lzma.o  lib-$(CONFIG_FEATURE_SEAMLESS_LZMA)     += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o
52  lib-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o  lib-$(CONFIG_FEATURE_COMPRESS_USAGE)    += decompress_bunzip2.o
53  lib-$(CONFIG_FEATURE_TAR_COMPRESS) += decompress_uncompress.o  
54  lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o  ifneq ($(lib-y),)
55  lib-$(CONFIG_UNZIP) += $(GUNZIP_FILES)  lib-y += $(COMMON_FILES)
56  lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o  endif

Legend:
Removed from v.532  
changed lines
  Added in v.984