diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-10-25 14:18:08 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-10-25 14:18:08 +0000 |
commit | 95ebf618b78814ef250bf40737816784cdaef74d (patch) | |
tree | 066dad2c0f8435604210905564c436a4a27ce44c /archival/libunarchive/Makefile | |
parent | 8eaa7b36985e6be193ed0ad1e4cbc493aa8d3cbc (diff) |
*** empty log message ***
Diffstat (limited to 'archival/libunarchive/Makefile')
-rw-r--r-- | archival/libunarchive/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/archival/libunarchive/Makefile b/archival/libunarchive/Makefile new file mode 100644 index 000000000..0c7219dcd --- /dev/null +++ b/archival/libunarchive/Makefile @@ -0,0 +1,57 @@ +# Makefile for busybox +# +# Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# + +TOPDIR :=../.. +L_TARGET := libunarchive.a + +obj-y := unarchive.o seek_sub_file.o +obj-n := +obj- := + +ifeq ($(CONFIG_DPKG),y) + obj-y += deb_extract.o get_header_ar.o get_header_tar.o +endif + +ifeq ($(CONFIG_DPKG_DEB),y) + obj-y += deb_extract.o get_header_ar.o get_header_tar.o +endif + +ifeq ($(CONFIG_AR),y) + obj-y += get_header_ar.o +endif + +ifeq ($(CONFIG_CPIO),y) + obj-y += get_header_cpio.o +endif + +ifeq ($(CONFIG_RPM2CPIO),y) + obj-y += get_header_cpio.o +endif + +ifeq ($(CONFIG_TAR),y) + obj-y += get_header_tar.o +endif + + +# Hand off to toplevel Rules.mak +include $(TOPDIR)/Rules.mak + +clean: + rm -f $(L_TARGET) *.o core + |