Magellan Linux

Annotation of /trunk/mkinitrd-magellan/busybox/libbb/Kbuild

Parent Directory Parent Directory | Revision Log Revision Log


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