diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-06-20 07:48:00 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-06-20 07:48:00 +0000 |
commit | eb1c94078f35d1b6e48741122c8bb9426befc5eb (patch) | |
tree | 48535c1f250f98707e595cfb83f47c83332c4fc9 /Makefile | |
parent | b4a26e6fc09e9dd14ca206f8d9ed2c6e8976df1b (diff) | |
download | busybox-w32-eb1c94078f35d1b6e48741122c8bb9426befc5eb.tar.gz busybox-w32-eb1c94078f35d1b6e48741122c8bb9426befc5eb.tar.bz2 busybox-w32-eb1c94078f35d1b6e48741122c8bb9426befc5eb.zip |
Reorganise unarchiving functions, more code re-use, only does single pass(no more linked lists), basis for supporting a cpio (and cheaper untar) applet, but cpio applet isnt included in this.
It effects ar, dpkg-deb applets only
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 24 |
1 files changed, 11 insertions, 13 deletions
@@ -236,19 +236,17 @@ endif | |||
236 | 236 | ||
237 | LIBBB = libbb | 237 | LIBBB = libbb |
238 | LIBBB_LIB = libbb.a | 238 | LIBBB_LIB = libbb.a |
239 | LIBBB_CSRC= append_archive_list.c add_from_archive_list.c ask_confirmation.c \ | 239 | LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \ |
240 | chomp.c concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \ | 240 | copy_file_chunk.c create_path.c daemon.c device_open.c error_msg.c \ |
241 | daemon.c deb_extract.c device_open.c error_msg.c error_msg_and_die.c \ | 241 | error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \ |
242 | extract_archive.c fgets_str.c find_mount_point.c find_pid_by_name.c \ | 242 | find_root_device.c full_read.c full_write.c get_console.c \ |
243 | find_root_device.c full_read.c full_write.c get_ar_headers.c get_console.c \ | 243 | get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \ |
244 | get_last_path_component.c get_line_from_file.c get_tar_headers.c \ | 244 | isdirectory.c kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c \ |
245 | get_tar_gz_headers.c gz_open.c human_readable.c isdirectory.c kernel_version.c \ | 245 | mtab_file.c my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c \ |
246 | loop.c mode_string.c module_syscalls.c mtab.c mtab_file.c my_getgrnam.c \ | 246 | my_getpwuid.c parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c \ |
247 | my_getgrgid.c my_getpwnam.c my_getpwnamegid.c my_getpwuid.c parse_mode.c \ | 247 | print_file.c process_escape_sequence.c read_package_field.c recursive_action.c \ |
248 | parse_number.c perror_msg.c perror_msg_and_die.c print_file.c \ | 248 | safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \ |
249 | process_escape_sequence.c read_package_field.c recursive_action.c safe_read.c \ | 249 | trim.c unarchive.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \ |
250 | safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \ | ||
251 | trim.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \ | ||
252 | xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \ | 250 | xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \ |
253 | copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c | 251 | copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c |
254 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) | 252 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) |