[BusyBox-cvs] busybox/archival/libunarchive Makefile.in,1.14,1.15
Glenn McGrath
bug1 at busybox.net
Tue Oct 28 10:45:03 UTC 2003
Update of /var/cvs/busybox/archival/libunarchive
In directory winder:/tmp/cvs-serv1107/archival/libunarchive
Modified Files:
Makefile.in
Log Message:
Conditionally compile some files.
This hides a bug related to the new bunzip code in the tar and dpkg[-deb]
applets.
It will also reduce compile time a little as some unused files wont be
compiled.
Index: Makefile.in
===================================================================
RCS file: /var/cvs/busybox/archival/libunarchive/Makefile.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- Makefile.in 14 Jul 2003 21:20:41 -0000 1.14
+++ Makefile.in 28 Oct 2003 10:44:58 -0000 1.15
@@ -31,15 +31,8 @@
\
filter_accept_all.o \
filter_accept_list.o \
- filter_accept_list_reassign.o \
filter_accept_reject_list.o \
\
- get_header_ar.o \
- get_header_cpio.o \
- get_header_tar.o \
- get_header_tar_bz2.o \
- get_header_tar_gz.o \
-\
header_skip.o \
header_list.o \
header_verbose_list.o \
@@ -54,23 +47,33 @@
\
archive_copy_file.o \
\
- check_header_gzip.o \
data_align.o \
- decompress_bunzip2.o \
find_list_entry.o \
- init_handle.o \
- uncompress.o \
+ init_handle.o
+
+GUNZIP_FILES:= check_header_gzip.o unzip.o
+DPKG_FILES:= \
+ get_header_ar.o \
unpack_ar_archive.o \
- unzip.o
+ get_header_tar.o \
+ filter_accept_list_reassign.o
-LIBUNARCHIVE-$(CONFIG_DPKG) +=
-LIBUNARCHIVE-$(CONFIG_DPKG_DEB) +=
-LIBUNARCHIVE-$(CONFIG_AR) +=
-LIBUNARCHIVE-$(CONFIG_CPIO) +=
-LIBUNARCHIVE-$(CONFIG_GUNZIP) +=
-LIBUNARCHIVE-$(CONFIG_RPM2CPIO) +=
-LIBUNARCHIVE-$(CONFIG_TAR) +=
-LIBUNARCHIVE-$(CONFIG_UNZIP) +=
+LIBUNARCHIVE-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o
+LIBUNARCHIVE-$(CONFIG_BUNZIP2) += decompress_bunzip2.o
+LIBUNARCHIVE-$(CONFIG_CPIO) += get_header_cpio.o
+LIBUNARCHIVE-$(CONFIG_DPKG) += $(DPKG_FILES)
+LIBUNARCHIVE-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)
+LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_GZ) += $(GUNZIP_FILES) get_header_tar_gz.o
+LIBUNARCHIVE-$(CONFIG_FEATURE_DEB_TAR_BZ2) += decompress_bunzip2.o get_header_tar_bz2.o
+LIBUNARCHIVE-$(CONFIG_GUNZIP) += $(GUNZIP_FILES)
+LIBUNARCHIVE-$(CONFIG_FEATURE_GUNZIP_UNCOMPRESS) += uncompress.o
+LIBUNARCHIVE-$(CONFIG_RPM2CPIO) += $(GUNZIP_FILES) get_header_cpio.o
+LIBUNARCHIVE-$(CONFIG_RPM) += $(GUNZIP_FILES) get_header_cpio.o
+LIBUNARCHIVE-$(CONFIG_TAR) += get_header_tar.o
+LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_BZ2) += get_header_tar_bz2.o
+LIBUNARCHIVE-$(CONFIG_FEATURE_TAR_GZIP) += $(GUNZIP_FILES) get_header_tar_gz.o
+LIBUNARCHIVE-$(CONFIG_UNCOMPRESS) += uncompress.o
+LIBUNARCHIVE-$(CONFIG_UNZIP) += $(GUNZIP_FILES)
libraries-y+=$(LIBUNARCHIVE_DIR)$(LIBUNARCHIVE_AR)
More information about the busybox-cvs
mailing list