blob: 809b0e10e58f7a2e290f31f92f11760c11f12183 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +00004#
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)
Eric Andersen7daa0762004-10-08 07:46:08 +000022LIBUNARCHIVE_DIR:=$(top_builddir)/archival/libunarchive/
Eric Andersen85208e22002-04-12 12:05:57 +000023endif
Eric Andersen7daa0762004-10-08 07:46:08 +000024srcdir=$(top_srcdir)/archvial/libunarchive
Eric Andersen85208e22002-04-12 12:05:57 +000025
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000026LIBUNARCHIVE-y:= \
27\
28 data_skip.o \
29 data_extract_all.o \
30 data_extract_to_stdout.o \
Glenn L McGrath61b79042002-10-19 10:40:55 +000031 data_extract_to_buffer.o \
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000032\
33 filter_accept_all.o \
34 filter_accept_list.o \
35 filter_accept_reject_list.o \
36\
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000037 header_skip.o \
38 header_list.o \
39 header_verbose_list.o \
40\
Glenn L McGrath237ae422002-11-03 14:05:15 +000041 archive_xread_all.o \
42 archive_xread_all_eof.o \
Glenn L McGrath237ae422002-11-03 14:05:15 +000043\
44 seek_by_char.o \
45 seek_by_jump.o \
46\
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000047 data_align.o \
Glenn L McGrath9ffd5772002-10-22 01:07:32 +000048 find_list_entry.o \
Glenn L McGrath5699b852003-11-15 23:19:05 +000049 open_transformer.o \
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000050 init_handle.o
Glenn L McGrath7ca04f32002-09-25 02:47:48 +000051
Eric Andersen762c64f2004-04-05 13:03:34 +000052GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000053DPKG_FILES:= \
54 get_header_ar.o \
55 unpack_ar_archive.o \
56 get_header_tar.o \
57 filter_accept_list_reassign.o
58
Eric Andersenc7bda1c2004-03-15 08:29:22 +000059LIBUNARCHIVE-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000060LIBUNARCHIVE-$(CONFIG_BUNZIP2) += decompress_bunzip2.o
61LIBUNARCHIVE-$(CONFIG_CPIO) += get_header_cpio.o
62LIBUNARCHIVE-$(CONFIG_DPKG) += $(DPKG_FILES)
63LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)
64LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o
65LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o
66LIBUNARCHIVE-$(CONFIG_GUNZIP) += $(GUNZIP_FILES)
Eric Andersen762c64f2004-04-05 13:03:34 +000067LIBUNARCHIVE-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += decompress_uncompress.o
Eric Andersenc7bda1c2004-03-15 08:29:22 +000068LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000069LIBUNARCHIVE-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o
70LIBUNARCHIVE-$(CONFIG_TAR) += get_header_tar.o
Glenn L McGrath7b215b92003-11-14 09:22:24 +000071LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_BZIP2) += decompress_bunzip2.o get_header_tar_bz2.o
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000072LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o
Eric Andersen762c64f2004-04-05 13:03:34 +000073LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_COMPRESS) += decompress_uncompress.o
74LIBUNARCHIVE-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o
Glenn L McGrathe81fc5f2003-10-28 10:44:58 +000075LIBUNARCHIVE-$(CONFIG_UNZIP) += $(GUNZIP_FILES)
Eric Andersen85208e22002-04-12 12:05:57 +000076
77libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR)
78
79$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR): $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
80 $(AR) -ro $@ $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y))
81
Eric Andersen7daa0762004-10-08 07:46:08 +000082$(LIBUNARCHIVA_DIR)%.o: $(srcdir)/%.c
83 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
84