Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | cb81e64 | 2003-07-14 21:21:08 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 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 | |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 25 | LIBUNARCHIVE-y:= \ |
| 26 | \ |
| 27 | data_skip.o \ |
| 28 | data_extract_all.o \ |
| 29 | data_extract_to_stdout.o \ |
Glenn L McGrath | 61b7904 | 2002-10-19 10:40:55 +0000 | [diff] [blame] | 30 | data_extract_to_buffer.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 31 | \ |
| 32 | filter_accept_all.o \ |
| 33 | filter_accept_list.o \ |
Glenn L McGrath | 18bbca1 | 2002-11-05 01:52:23 +0000 | [diff] [blame] | 34 | filter_accept_list_reassign.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 35 | filter_accept_reject_list.o \ |
| 36 | \ |
| 37 | get_header_ar.o \ |
Glenn L McGrath | b72a735 | 2002-12-10 00:17:22 +0000 | [diff] [blame] | 38 | get_header_cpio.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 39 | get_header_tar.o \ |
Glenn L McGrath | 7f2a953 | 2002-11-05 02:56:57 +0000 | [diff] [blame] | 40 | get_header_tar_bz2.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 41 | get_header_tar_gz.o \ |
| 42 | \ |
| 43 | header_skip.o \ |
| 44 | header_list.o \ |
| 45 | header_verbose_list.o \ |
| 46 | \ |
Glenn L McGrath | 237ae42 | 2002-11-03 14:05:15 +0000 | [diff] [blame] | 47 | archive_xread.o \ |
| 48 | archive_xread_all.o \ |
| 49 | archive_xread_all_eof.o \ |
| 50 | archive_xread_char.o \ |
| 51 | \ |
| 52 | seek_by_char.o \ |
| 53 | seek_by_jump.o \ |
| 54 | \ |
| 55 | archive_copy_file.o \ |
| 56 | \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 57 | check_header_gzip.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 58 | data_align.o \ |
Glenn L McGrath | 60bce49 | 2002-11-03 07:28:38 +0000 | [diff] [blame] | 59 | decompress_bunzip2.o \ |
Glenn L McGrath | 9ffd577 | 2002-10-22 01:07:32 +0000 | [diff] [blame] | 60 | find_list_entry.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 61 | init_handle.o \ |
Glenn L McGrath | 9ffd577 | 2002-10-22 01:07:32 +0000 | [diff] [blame] | 62 | uncompress.o \ |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 63 | unpack_ar_archive.o \ |
Glenn L McGrath | 9ffd577 | 2002-10-22 01:07:32 +0000 | [diff] [blame] | 64 | unzip.o |
Glenn L McGrath | 7ca04f3 | 2002-09-25 02:47:48 +0000 | [diff] [blame] | 65 | |
| 66 | LIBUNARCHIVE-$(CONFIG_DPKG) += |
| 67 | LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += |
| 68 | LIBUNARCHIVE-$(CONFIG_AR) += |
| 69 | LIBUNARCHIVE-$(CONFIG_CPIO) += |
| 70 | LIBUNARCHIVE-$(CONFIG_GUNZIP) += |
| 71 | LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += |
| 72 | LIBUNARCHIVE-$(CONFIG_TAR) += |
| 73 | LIBUNARCHIVE-$(CONFIG_UNZIP) += |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 74 | |
| 75 | libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR) |
| 76 | |
| 77 | $(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR): $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y)) |
| 78 | $(AR) -ro $@ $(patsubst %,$(LIBUNARCHIVE_DIR)%, $(LIBUNARCHIVE-y)) |
| 79 | |