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

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