Move unzip.c uncompress.c from libbb to archiveal/libunarchive
[oweals/busybox.git] / archival / libunarchive / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2002 by Erik Andersen <andersee@debian.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_all_prefix.o \
30         data_extract_to_stdout.o \
31         data_extract_to_buffer.o \
32 \
33         filter_accept_all.o \
34         filter_accept_list.o \
35         filter_accept_reject_list.o \
36 \
37         get_header_ar.o \
38         get_header_tar.o \
39         get_header_tar_gz.o \
40 \
41         header_skip.o \
42         header_list.o \
43         header_verbose_list.o \
44 \
45         add_to_list.o \
46         check_header_gzip.o \
47         check_trailer_gzip.o \
48         copy_file_chunk_fd.o \
49         data_align.o \
50         find_list_entry.o \
51         init_handle.o \
52         seek_sub_file.o \
53         uncompress.o \
54         unpack_ar_archive.o \
55         unzip.o
56
57 LIBUNARCHIVE-$(CONFIG_DPKG) += 
58 LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += 
59 LIBUNARCHIVE-$(CONFIG_AR) += 
60 LIBUNARCHIVE-$(CONFIG_CPIO) += 
61 LIBUNARCHIVE-$(CONFIG_GUNZIP) += 
62 LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += 
63 LIBUNARCHIVE-$(CONFIG_TAR) += 
64 LIBUNARCHIVE-$(CONFIG_UNZIP) += 
65
66 libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR)
67
68 $(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR): $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
69         $(AR) -ro $@ $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
70