1# Makefile for busybox 2# 3# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> 4# 5# Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 6 7lib-y:= 8 9COMMON_FILES:= \ 10\ 11 data_skip.o \ 12 data_extract_all.o \ 13 data_extract_to_stdout.o \ 14\ 15 filter_accept_all.o \ 16 filter_accept_list.o \ 17 filter_accept_reject_list.o \ 18\ 19 header_skip.o \ 20 header_list.o \ 21 header_verbose_list.o \ 22\ 23 seek_by_read.o \ 24 seek_by_jump.o \ 25\ 26 data_align.o \ 27 find_list_entry.o \ 28 init_handle.o 29 30DPKG_FILES:= \ 31 get_header_ar.o \ 32 unpack_ar_archive.o \ 33 get_header_tar.o \ 34 filter_accept_list_reassign.o 35 36lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o 37lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o 38lib-$(CONFIG_UNLZMA) += decompress_unlzma.o 39lib-$(CONFIG_CPIO) += get_header_cpio.o 40lib-$(CONFIG_DPKG) += $(DPKG_FILES) 41lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) 42lib-$(CONFIG_GUNZIP) += decompress_unzip.o 43lib-$(CONFIG_RPM2CPIO) += decompress_unzip.o get_header_cpio.o 44lib-$(CONFIG_RPM) += open_transformer.o decompress_unzip.o get_header_cpio.o 45lib-$(CONFIG_TAR) += get_header_tar.o 46lib-$(CONFIG_UNCOMPRESS) += decompress_uncompress.o 47lib-$(CONFIG_UNZIP) += decompress_unzip.o 48lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o 49lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_unzip.o get_header_tar_gz.o 50lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o get_header_tar_bz2.o 51lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o get_header_tar_lzma.o 52lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += decompress_bunzip2.o 53 54ifneq ($(lib-y),) 55lib-y += $(COMMON_FILES) 56endif 57