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