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