Don't compile get_header_tar_FOO function if they are not needed
[oweals/busybox.git] / archival / libarchive / Kbuild.src
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under GPLv2 or later, see file LICENSE in this source tree.
6
7 lib-y:=
8
9 COMMON_FILES:= \
10 \
11         data_skip.o \
12         data_extract_all.o \
13         data_extract_to_stdout.o \
14 \
15         filter_accept_all.o \
16         filter_accept_list.o \
17         filter_accept_reject_list.o \
18 \
19         header_skip.o \
20         header_list.o \
21         header_verbose_list.o \
22 \
23         seek_by_read.o \
24         seek_by_jump.o \
25 \
26         data_align.o \
27         find_list_entry.o \
28         init_handle.o
29
30 DPKG_FILES:= \
31         unpack_ar_archive.o \
32         filter_accept_list_reassign.o \
33         get_header_ar.o \
34         get_header_tar.o \
35         get_header_tar_gz.o \
36         get_header_tar_bz2.o \
37         get_header_tar_lzma.o \
38
39 INSERT
40
41 lib-$(CONFIG_AR)                        += get_header_ar.o unpack_ar_archive.o
42 lib-$(CONFIG_BUNZIP2)                   += decompress_bunzip2.o
43 lib-$(CONFIG_UNLZMA)                    += decompress_unlzma.o
44 lib-$(CONFIG_UNXZ)                      += decompress_unxz.o
45 lib-$(CONFIG_CPIO)                      += get_header_cpio.o
46 lib-$(CONFIG_DPKG)                      += $(DPKG_FILES)
47 lib-$(CONFIG_DPKG_DEB)                  += $(DPKG_FILES)
48 lib-$(CONFIG_GUNZIP)                    += decompress_gunzip.o
49 lib-$(CONFIG_RPM2CPIO)                  += decompress_gunzip.o get_header_cpio.o
50 lib-$(CONFIG_RPM)                       += open_transformer.o decompress_gunzip.o get_header_cpio.o
51 lib-$(CONFIG_TAR)                       += get_header_tar.o
52 lib-$(CONFIG_UNCOMPRESS)                += decompress_uncompress.o
53 lib-$(CONFIG_UNZIP)                     += decompress_gunzip.o
54 lib-$(CONFIG_LZOP)                      += lzo1x_1.o lzo1x_1o.o lzo1x_d.o
55 lib-$(CONFIG_LZOP_COMPR_HIGH)           += lzo1x_9x.o
56 lib-$(CONFIG_FEATURE_SEAMLESS_Z)        += open_transformer.o decompress_uncompress.o
57 lib-$(CONFIG_FEATURE_SEAMLESS_GZ)       += open_transformer.o decompress_gunzip.o
58 lib-$(CONFIG_FEATURE_SEAMLESS_BZ2)      += open_transformer.o decompress_bunzip2.o
59 lib-$(CONFIG_FEATURE_SEAMLESS_LZMA)     += open_transformer.o decompress_unlzma.o
60 lib-$(CONFIG_FEATURE_SEAMLESS_XZ)       += open_transformer.o decompress_unxz.o
61 lib-$(CONFIG_FEATURE_COMPRESS_USAGE)    += decompress_bunzip2.o
62 lib-$(CONFIG_FEATURE_COMPRESS_BBCONFIG) += decompress_bunzip2.o
63 lib-$(CONFIG_FEATURE_TAR_TO_COMMAND)    += data_extract_to_command.o
64
65 ifneq ($(lib-y),)
66 lib-y += $(COMMON_FILES)
67 endif