diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-10-22 10:23:04 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-10-22 10:23:04 +0000 |
commit | 976a55e168933f07294d0da3a0d00046a7f307e4 (patch) | |
tree | 94ccea132cfcb5d26c9cb46b9ce0267dda794299 | |
parent | f1d3ac429e2915bd5d91fe293162091c5481da6c (diff) | |
download | busybox-w32-976a55e168933f07294d0da3a0d00046a7f307e4.tar.gz busybox-w32-976a55e168933f07294d0da3a0d00046a7f307e4.tar.bz2 busybox-w32-976a55e168933f07294d0da3a0d00046a7f307e4.zip |
make this a little bit less messy
-rw-r--r-- | libbb/Makefile.in | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in index 0707d16d7..bb98965c0 100644 --- a/libbb/Makefile.in +++ b/libbb/Makefile.in | |||
@@ -25,29 +25,27 @@ endif | |||
25 | 25 | ||
26 | LIBBB_SRC:= \ | 26 | LIBBB_SRC:= \ |
27 | bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \ | 27 | bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \ |
28 | compare_string_array.c concat_path_file.c copy_file.c \ | 28 | compare_string_array.c concat_path_file.c copy_file.c copyfd.c \ |
29 | copyfd.c correct_password.c create_icmp_socket.c \ | 29 | correct_password.c create_icmp_socket.c create_icmp6_socket.c \ |
30 | create_icmp6_socket.c device_open.c dump.c error_msg.c \ | 30 | device_open.c dump.c error_msg.c error_msg_and_die.c find_mount_point.c \ |
31 | error_msg_and_die.c find_mount_point.c find_pid_by_name.c \ | 31 | find_pid_by_name.c find_root_device.c fgets_str.c full_read.c \ |
32 | find_root_device.c fgets_str.c full_read.c full_write.c get_console.c \ | 32 | full_write.c get_last_path_component.c get_line_from_file.c get_ug_id.c \ |
33 | get_last_path_component.c get_line_from_file.c get_ug_id.c \ | ||
34 | get_terminal_width_height.c herror_msg.c herror_msg_and_die.c \ | 33 | get_terminal_width_height.c herror_msg.c herror_msg_and_die.c \ |
35 | human_readable.c inet_common.c inode_hash.c interface.c isdirectory.c \ | 34 | human_readable.c inet_common.c inode_hash.c interface.c isdirectory.c \ |
36 | kernel_version.c last_char_is.c llist_add_to.c login.c loop.c \ | 35 | kernel_version.c last_char_is.c llist_add_to.c login.c loop.c \ |
37 | make_directory.c mode_string.c module_syscalls.c mtab.c mtab_file.c \ | 36 | make_directory.c mode_string.c module_syscalls.c mtab.c mtab_file.c \ |
38 | my_getgrgid.c my_getgrnam.c my_getpwnam.c my_getpwnamegid.c \ | 37 | my_getgrgid.c my_getgrnam.c my_getpwnam.c my_getpwnamegid.c \ |
39 | my_getpwuid.c obscure.c parse_mode.c parse_number.c \ | 38 | my_getpwuid.c obscure.c parse_mode.c parse_number.c perror_msg.c \ |
40 | perror_msg.c perror_msg_and_die.c print_file.c \ | 39 | perror_msg_and_die.c print_file.c get_console.c \ |
41 | process_escape_sequence.c procps.c pwd2spwd.c pw_encrypt.c \ | 40 | process_escape_sequence.c procps.c pwd2spwd.c pw_encrypt.c qmodule.c \ |
42 | qmodule.c read_package_field.c recursive_action.c remove_file.c \ | 41 | read_package_field.c recursive_action.c remove_file.c \ |
43 | restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \ | 42 | restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \ |
44 | safe_strncpy.c setup_environment.c simplify_path.c syscalls.c \ | 43 | safe_strncpy.c setup_environment.c simplify_path.c syscalls.c \ |
45 | syslog_msg_with_name.c trim.c u_signal_names.c vdprintf.c verror_msg.c \ | 44 | syslog_msg_with_name.c trim.c u_signal_names.c vdprintf.c verror_msg.c \ |
46 | vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c \ | 45 | vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c \ |
47 | xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \ | 46 | xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \ |
48 | \ | 47 | get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \ |
49 | fclose_nonstdin.c fflush_stdout_and_exit.c getopt_ulflags.c \ | 48 | getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \ |
50 | default_error_retval.c wfopen_input.c speed_table.c \ | ||
51 | perror_nomsg_and_die.c perror_nomsg.c skip_whitespace.c \ | 49 | perror_nomsg_and_die.c perror_nomsg.c skip_whitespace.c \ |
52 | warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c | 50 | warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c |
53 | 51 | ||