source: MondoRescue/branches/3.2/mindi-busybox/libbb/Kbuild.src@ 3186

Last change on this file since 3186 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 4.7 KB
Line 
1# Makefile for busybox
2#
3# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4#
5# Licensed under GPLv2, see file LICENSE in this source tree.
6
7libbb/appletlib.o: include/usage_compressed.h
8
9lib-y:=
10
11INSERT
12
13lib-y += appletlib.o
14lib-y += ask_confirmation.o
15lib-y += bb_askpass.o
16lib-y += bb_basename.o
17lib-y += bb_bswap_64.o
18lib-y += bb_do_delay.o
19lib-y += bb_pwd.o
20lib-y += bb_qsort.o
21#lib-y += bb_strtod.o
22lib-y += bb_strtonum.o
23lib-y += change_identity.o
24lib-y += chomp.o
25lib-y += compare_string_array.o
26lib-y += concat_path_file.o
27lib-y += concat_subpath_file.o
28lib-y += copy_file.o
29lib-y += copyfd.o
30lib-y += crc32.o
31lib-y += create_icmp6_socket.o
32lib-y += create_icmp_socket.o
33lib-y += default_error_retval.o
34lib-y += device_open.o
35lib-y += dump.o
36lib-y += execable.o
37lib-y += fclose_nonstdin.o
38lib-y += fflush_stdout_and_exit.o
39lib-y += fgets_str.o
40lib-y += find_pid_by_name.o
41lib-y += find_root_device.o
42lib-y += full_write.o
43lib-y += get_console.o
44lib-y += get_last_path_component.o
45lib-y += get_line_from_file.o
46lib-y += getopt32.o
47lib-y += getpty.o
48lib-y += get_volsize.o
49lib-y += herror_msg.o
50lib-y += human_readable.o
51lib-y += inet_common.o
52lib-y += info_msg.o
53lib-y += inode_hash.o
54lib-y += isdirectory.o
55lib-y += kernel_version.o
56lib-y += last_char_is.o
57lib-y += lineedit.o lineedit_ptr_hack.o
58lib-y += llist.o
59lib-y += login.o
60lib-y += make_directory.o
61lib-y += makedev.o
62lib-y += match_fstype.o
63lib-y += hash_md5_sha.o
64# Alternative (disabled) MD5 implementation
65#lib-y += hash_md5prime.o
66lib-y += messages.o
67lib-y += mode_string.o
68lib-y += obscure.o
69lib-y += parse_mode.o
70lib-y += parse_config.o
71lib-y += perror_msg.o
72lib-y += perror_nomsg.o
73lib-y += perror_nomsg_and_die.o
74lib-y += pidfile.o
75lib-y += platform.o
76lib-y += printable.o
77lib-y += printable_string.o
78lib-y += print_flags.o
79lib-y += process_escape_sequence.o
80lib-y += procps.o
81lib-y += progress.o
82lib-y += ptr_to_globals.o
83lib-y += read.o
84lib-y += read_printf.o
85lib-y += read_key.o
86lib-y += recursive_action.o
87lib-y += remove_file.o
88lib-y += run_shell.o
89lib-y += safe_gethostname.o
90lib-y += safe_poll.o
91lib-y += safe_strncpy.o
92lib-y += safe_write.o
93lib-y += setup_environment.o
94lib-y += signals.o
95lib-y += simplify_path.o
96lib-y += single_argv.o
97lib-y += skip_whitespace.o
98lib-y += speed_table.o
99lib-y += str_tolower.o
100lib-y += strrstr.o
101lib-y += time.o
102lib-y += trim.o
103lib-y += u_signal_names.o
104lib-y += udp_io.o
105lib-y += uuencode.o
106lib-y += vdprintf.o
107lib-y += verror_msg.o
108lib-y += vfork_daemon_rexec.o
109lib-y += warn_ignoring_args.o
110lib-y += wfopen.o
111lib-y += wfopen_input.o
112lib-y += write.o
113lib-y += xatonum.o
114lib-y += xconnect.o
115lib-y += xfuncs.o
116lib-y += xfuncs_printf.o
117lib-y += xfunc_die.o
118lib-y += xgetcwd.o
119lib-y += xgethostbyname.o
120lib-y += xreadlink.o
121lib-y += xrealloc_vector.o
122
123lib-$(CONFIG_FEATURE_UTMP) += utmp.o
124
125# A mix of optimizations (why build stuff we know won't be used)
126# and objects which may fail to build (SELinux on selinux-less system)
127lib-$(CONFIG_SELINUX) += selinux_common.o
128lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o
129lib-$(CONFIG_UNICODE_SUPPORT) += unicode.o
130lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o
131
132lib-$(CONFIG_LOSETUP) += loop.o
133lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o
134
135lib-$(CONFIG_ADDGROUP) += update_passwd.o
136lib-$(CONFIG_ADDUSER) += update_passwd.o
137lib-$(CONFIG_DELGROUP) += update_passwd.o
138lib-$(CONFIG_DELUSER) += update_passwd.o
139
140lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o
141lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o
142lib-$(CONFIG_CRYPTPW) += pw_encrypt.o
143lib-$(CONFIG_SULOGIN) += pw_encrypt.o
144lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o
145lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o
146lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o
147lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o
148
149lib-$(CONFIG_DF) += find_mount_point.o
150lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o
151lib-$(CONFIG_MKFS_EXT2) += find_mount_point.o
152lib-$(CONFIG_MKFS_REISER) += find_mount_point.o
153lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o
154lib-$(CONFIG_MOUNT) += find_mount_point.o
155
156lib-$(CONFIG_HWCLOCK) += rtc.o
157lib-$(CONFIG_RTCWAKE) += rtc.o
158
159lib-$(CONFIG_IOSTAT) += get_cpu_count.o
160lib-$(CONFIG_MPSTAT) += get_cpu_count.o
161lib-$(CONFIG_POWERTOP) += get_cpu_count.o
162
163# We shouldn't build xregcomp.c if we don't need it - this ensures we don't
164# require regex.h to be in the include dir even if we don't need it thereby
165# allowing us to build busybox even if uclibc regex support is disabled.
166
167lib-$(CONFIG_AWK) += xregcomp.o
168lib-$(CONFIG_SED) += xregcomp.o
169lib-$(CONFIG_GREP) += xregcomp.o
170lib-$(CONFIG_EXPR) += xregcomp.o
171lib-$(CONFIG_MDEV) += xregcomp.o
172lib-$(CONFIG_LESS) += xregcomp.o
173lib-$(CONFIG_PGREP) += xregcomp.o
174lib-$(CONFIG_PKILL) += xregcomp.o
175lib-$(CONFIG_DEVFSD) += xregcomp.o
176lib-$(CONFIG_FEATURE_FIND_REGEX) += xregcomp.o
Note: See TracBrowser for help on using the repository browser.