Conditionally compile some files.
[oweals/busybox.git] / archival / libunarchive / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #
19
20 LIBUNARCHIVE_AR:=libunarchive.a
21 ifndef $(LIBUNARCHIVE_DIR)
22 LIBUNARCHIVE_DIR:=$(TOPDIR)archival/libunarchive/
23 endif
24
25 LIBUNARCHIVE-y:= \
26 \
27         data_skip.o \
28         data_extract_all.o \
29         data_extract_to_stdout.o \
30         data_extract_to_buffer.o \
31 \
32         filter_accept_all.o \
33         filter_accept_list.o \
34         filter_accept_reject_list.o \
35 \
36         header_skip.o \
37         header_list.o \
38         header_verbose_list.o \
39 \
40         archive_xread.o \
41         archive_xread_all.o \
42         archive_xread_all_eof.o \
43         archive_xread_char.o \
44 \
45         seek_by_char.o \
46         seek_by_jump.o \
47 \
48         archive_copy_file.o \
49 \
50         data_align.o \
51         find_list_entry.o \
52         init_handle.o
53
54 GUNZIP_FILES:= check_header_gzip.o unzip.o
55 DPKG_FILES:= \
56         get_header_ar.o \
57         unpack_ar_archive.o \
58         get_header_tar.o \
59         filter_accept_list_reassign.o
60
61 LIBUNARCHIVE-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o 
62 LIBUNARCHIVE-$(CONFIG_BUNZIP2) += decompress_bunzip2.o
63 LIBUNARCHIVE-$(CONFIG_CPIO) += get_header_cpio.o
64 LIBUNARCHIVE-$(CONFIG_DPKG) += $(DPKG_FILES)
65 LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)
66 LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o
67 LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o
68 LIBUNARCHIVE-$(CONFIG_GUNZIP) += $(GUNZIP_FILES)
69 LIBUNARCHIVE-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += uncompress.o
70 LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o 
71 LIBUNARCHIVE-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o
72 LIBUNARCHIVE-$(CONFIG_TAR) += get_header_tar.o
73 LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_BZ2) += get_header_tar_bz2.o
74 LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o
75 LIBUNARCHIVE-$(CONFIG_UNCOMPRESS) += uncompress.o
76 LIBUNARCHIVE-$(CONFIG_UNZIP) += $(GUNZIP_FILES)
77
78 libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR)
79
80 $(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR): $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
81         $(AR) -ro $@ $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
82