diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-06-13 07:26:39 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-06-13 07:26:39 +0000 |
commit | 9aff9036035fbed074e8e711b96c5c934e668884 (patch) | |
tree | 4db8fdd4b9f429b416d068794c79bfc0df844e20 /Makefile | |
parent | dab3d46b9d35e0a0279b3700fe411f876bb25781 (diff) |
Reorganise archive extraction code
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -236,21 +236,21 @@ endif LIBBB = libbb LIBBB_LIB = libbb.a -LIBBB_CSRC= ask_confirmation.c chomp.c \ -concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \ +LIBBB_CSRC= append_archive_list.c add_from_archive_list.c ask_confirmation.c \ +chomp.c concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \ daemon.c deb_extract.c device_open.c error_msg.c error_msg_and_die.c \ -find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \ -full_write.c get_ar_headers.c get_console.c get_last_path_component.c \ -get_line_from_file.c gz_open.c human_readable.c isdirectory.c \ -kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c mtab_file.c \ -my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c my_getpwuid.c \ -parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c print_file.c \ -process_escape_sequence.c read_package_field.c read_text_file_to_buffer.c \ -recursive_action.c safe_read.c safe_strncpy.c seek_ared_file.c syscalls.c \ -syslog_msg_with_name.c time_string.c trim.c untar.c unzip.c vdprintf.c \ -verror_msg.c vperror_msg.c wfopen.c xfuncs.c xgetcwd.c xreadlink.c \ -xregcomp.c interface.c remove_file.c last_char_is.c copyfd.c \ -vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c +extract_archive.c fgets_str.c find_mount_point.c find_pid_by_name.c \ +find_root_device.c full_read.c full_write.c get_ar_headers.c get_console.c \ +get_last_path_component.c get_line_from_file.c get_tar_headers.c \ +get_tar_gz_headers.c gz_open.c human_readable.c isdirectory.c kernel_version.c \ +loop.c mode_string.c module_syscalls.c mtab.c mtab_file.c my_getgrnam.c \ +my_getgrgid.c my_getpwnam.c my_getpwnamegid.c my_getpwuid.c parse_mode.c \ +parse_number.c perror_msg.c perror_msg_and_die.c print_file.c \ +process_escape_sequence.c read_package_field.c recursive_action.c safe_read.c \ +safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \ +trim.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \ +xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \ +copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) LIBBB_CFLAGS = -I$(LIBBB) ifneq ($(strip $(BB_SRC_DIR)),) |