blob: e406f750ead58dce183c2ca9abe45a1e987c1bff [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# 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
20LIBUNARCHIVE_AR:=libunarchive.a
21ifndef $(LIBUNARCHIVE_DIR)
22LIBUNARCHIVE_DIR:=$(TOPDIR)archival/libunarchive/
23endif
24
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000025LIBUNARCHIVE-y:= \
26\
27 data_skip.o \
28 data_extract_all.o \
29 data_extract_to_stdout.o \
Glenn L McGrath61b79042002-10-19 10:40:55 +000030 data_extract_to_buffer.o \
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000031\
32 filter_accept_all.o \
33 filter_accept_list.o \
34 filter_accept_reject_list.o \
35\
36 get_header_ar.o \
37 get_header_tar.o \
38 get_header_tar_gz.o \
39\
40 header_skip.o \
41 header_list.o \
42 header_verbose_list.o \
43\
Glenn L McGrath237ae422002-11-03 14:05:15 +000044 archive_xread.o \
45 archive_xread_all.o \
46 archive_xread_all_eof.o \
47 archive_xread_char.o \
48\
49 seek_by_char.o \
50 seek_by_jump.o \
51\
52 archive_copy_file.o \
53\
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000054 add_to_list.o \
55 check_header_gzip.o \
56 check_trailer_gzip.o \
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000057 data_align.o \
Glenn L McGrath60bce492002-11-03 07:28:38 +000058 decompress_bunzip2.o \
Glenn L McGrath9ffd5772002-10-22 01:07:32 +000059 find_list_entry.o \
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000060 init_handle.o \
Glenn L McGrath9ffd5772002-10-22 01:07:32 +000061 uncompress.o \
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000062 unpack_ar_archive.o \
Glenn L McGrath9ffd5772002-10-22 01:07:32 +000063 unzip.o
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000064
65LIBUNARCHIVE-$(CONFIG_DPKG) +=
66LIBUNARCHIVE-$(CONFIG_DPKG_DEB) +=
67LIBUNARCHIVE-$(CONFIG_AR) +=
68LIBUNARCHIVE-$(CONFIG_CPIO) +=
69LIBUNARCHIVE-$(CONFIG_GUNZIP) +=
70LIBUNARCHIVE-$(CONFIG_RPM2CPIO) +=
71LIBUNARCHIVE-$(CONFIG_TAR) +=
72LIBUNARCHIVE-$(CONFIG_UNZIP) +=
Eric Andersen85208e22002-04-12 12:05:57 +000073
74libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR)
75
76$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR): $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
77 $(AR) -ro $@ $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
78