1 | # Makefile for busybox |
---|
2 | # |
---|
3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> |
---|
4 | # |
---|
5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. |
---|
6 | |
---|
7 | lib-y:= |
---|
8 | |
---|
9 | lib-y += ask_confirmation.o |
---|
10 | lib-y += bb_askpass.o |
---|
11 | lib-y += bb_basename.o |
---|
12 | lib-y += bb_do_delay.o |
---|
13 | lib-y += bb_pwd.o |
---|
14 | lib-y += bb_strtonum.o |
---|
15 | lib-y += change_identity.o |
---|
16 | lib-y += chomp.o |
---|
17 | lib-y += compare_string_array.o |
---|
18 | lib-y += concat_path_file.o |
---|
19 | lib-y += concat_subpath_file.o |
---|
20 | lib-y += copy_file.o |
---|
21 | lib-y += copyfd.o |
---|
22 | lib-y += crc32.o |
---|
23 | lib-y += create_icmp6_socket.o |
---|
24 | lib-y += create_icmp_socket.o |
---|
25 | lib-y += default_error_retval.o |
---|
26 | lib-y += device_open.o |
---|
27 | lib-y += dump.o |
---|
28 | lib-y += error_msg.o |
---|
29 | lib-y += error_msg_and_die.o |
---|
30 | lib-y += execable.o |
---|
31 | lib-y += fclose_nonstdin.o |
---|
32 | lib-y += fflush_stdout_and_exit.o |
---|
33 | lib-y += fgets_str.o |
---|
34 | lib-y += find_pid_by_name.o |
---|
35 | lib-y += find_root_device.o |
---|
36 | lib-y += full_write.o |
---|
37 | lib-y += get_console.o |
---|
38 | lib-y += get_last_path_component.o |
---|
39 | lib-y += get_line_from_file.o |
---|
40 | lib-y += getopt32.o |
---|
41 | lib-y += herror_msg.o |
---|
42 | lib-y += herror_msg_and_die.o |
---|
43 | lib-y += human_readable.o |
---|
44 | lib-y += inet_common.o |
---|
45 | lib-y += info_msg.o |
---|
46 | lib-y += inode_hash.o |
---|
47 | lib-y += isdirectory.o |
---|
48 | lib-y += kernel_version.o |
---|
49 | lib-y += last_char_is.o |
---|
50 | lib-y += lineedit.o |
---|
51 | lib-y += llist.o |
---|
52 | lib-y += login.o |
---|
53 | lib-y += make_directory.o |
---|
54 | lib-y += makedev.o |
---|
55 | lib-y += match_fstype.o |
---|
56 | lib-y += md5.o |
---|
57 | lib-y += messages.o |
---|
58 | lib-y += mode_string.o |
---|
59 | lib-y += mtab_file.o |
---|
60 | lib-y += obscure.o |
---|
61 | lib-y += parse_mode.o |
---|
62 | lib-y += perror_msg.o |
---|
63 | lib-y += perror_msg_and_die.o |
---|
64 | lib-y += perror_nomsg.o |
---|
65 | lib-y += perror_nomsg_and_die.o |
---|
66 | lib-y += pidfile.o |
---|
67 | lib-y += process_escape_sequence.o |
---|
68 | lib-y += procps.o |
---|
69 | lib-y += read.o |
---|
70 | lib-y += recursive_action.o |
---|
71 | lib-y += remove_file.o |
---|
72 | lib-y += restricted_shell.o |
---|
73 | lib-y += run_shell.o |
---|
74 | lib-y += safe_strncpy.o |
---|
75 | lib-y += safe_write.o |
---|
76 | lib-y += setup_environment.o |
---|
77 | lib-y += sha1.o |
---|
78 | lib-y += simplify_path.o |
---|
79 | lib-y += skip_whitespace.o |
---|
80 | lib-y += speed_table.o |
---|
81 | lib-y += str_tolower.o |
---|
82 | lib-y += time.o |
---|
83 | lib-y += trim.o |
---|
84 | lib-y += u_signal_names.o |
---|
85 | lib-y += udp_io.o |
---|
86 | lib-y += uuencode.o |
---|
87 | lib-y += vdprintf.o |
---|
88 | lib-y += verror_msg.o |
---|
89 | lib-y += vfork_daemon_rexec.o |
---|
90 | lib-y += warn_ignoring_args.o |
---|
91 | lib-y += wfopen.o |
---|
92 | lib-y += wfopen_input.o |
---|
93 | lib-y += xatonum.o |
---|
94 | lib-y += xconnect.o |
---|
95 | lib-y += xfuncs.o |
---|
96 | lib-y += xgetcwd.o |
---|
97 | lib-y += xgethostbyname.o |
---|
98 | lib-y += xreadlink.o |
---|
99 | |
---|
100 | # conditionally compiled objects: |
---|
101 | lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o |
---|
102 | lib-$(CONFIG_LOSETUP) += loop.o |
---|
103 | lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o |
---|
104 | lib-$(CONFIG_PASSWD) += pw_encrypt.o crypt_make_salt.o update_passwd.o |
---|
105 | lib-$(CONFIG_CHPASSWD) += pw_encrypt.o crypt_make_salt.o update_passwd.o |
---|
106 | lib-$(CONFIG_CRYPTPW) += pw_encrypt.o crypt_make_salt.o |
---|
107 | lib-$(CONFIG_SULOGIN) += pw_encrypt.o |
---|
108 | lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o |
---|
109 | lib-$(CONFIG_VLOCK) += correct_password.o |
---|
110 | lib-$(CONFIG_SU) += correct_password.o |
---|
111 | lib-$(CONFIG_LOGIN) += correct_password.o |
---|
112 | lib-$(CONFIG_DF) += find_mount_point.o |
---|
113 | lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o |
---|
114 | lib-$(CONFIG_SELINUX) += selinux_common.o |
---|
115 | |
---|
116 | # We shouldn't build xregcomp.c if we don't need it - this ensures we don't |
---|
117 | # require regex.h to be in the include dir even if we don't need it thereby |
---|
118 | # allowing us to build busybox even if uclibc regex support is disabled. |
---|
119 | |
---|
120 | lib-$(CONFIG_AWK) += xregcomp.o |
---|
121 | lib-$(CONFIG_SED) += xregcomp.o |
---|
122 | lib-$(CONFIG_GREP) += xregcomp.o |
---|
123 | lib-$(CONFIG_EXPR) += xregcomp.o |
---|
124 | lib-$(CONFIG_MDEV) += xregcomp.o |
---|
125 | lib-$(CONFIG_LESS) += xregcomp.o |
---|
126 | lib-$(CONFIG_DEVFSD) += xregcomp.o |
---|
127 | lib-$(CONFIG_FEATURE_FIND_REGEX) += xregcomp.o |
---|