From da929a95aace0e79fbc621af2ab03c76d74d5fcb Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Fri, 4 Jun 2010 20:10:51 +0200 Subject: mass renaming Kbuild -> Kbuild.src, Config.in -> Config.src Signed-off-by: Denys Vlasenko --- libbb/Config.in | 176 ------------------------------------------------------- libbb/Config.src | 176 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ libbb/Kbuild | 172 ----------------------------------------------------- libbb/Kbuild.src | 172 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 348 insertions(+), 348 deletions(-) delete mode 100644 libbb/Config.in create mode 100644 libbb/Config.src delete mode 100644 libbb/Kbuild create mode 100644 libbb/Kbuild.src (limited to 'libbb') diff --git a/libbb/Config.in b/libbb/Config.in deleted file mode 100644 index 55367b21b..000000000 --- a/libbb/Config.in +++ /dev/null @@ -1,176 +0,0 @@ -# -# For a description of the syntax of this configuration file, -# see scripts/kbuild/config-language.txt. -# - -menu "Busybox Library Tuning" - -config PASSWORD_MINLEN - int "Minimum password length" - default 6 - range 5 32 - help - Minimum allowable password length. - -config MD5_SIZE_VS_SPEED - int "MD5: Trade bytes for speed (0:fast, 3:slow)" - default 2 - range 0 3 - help - Trade binary size versus speed for the md5sum algorithm. - Approximate values running uClibc and hashing - linux-2.4.4.tar.bz2 were: - user times (sec) text size (386) - 0 (fastest) 1.1 6144 - 1 1.4 5392 - 2 3.0 5088 - 3 (smallest) 5.1 4912 - -config FEATURE_FAST_TOP - bool "Faster /proc scanning code (+100 bytes)" - default n - help - This option makes top (and ps) ~20% faster (or 20% less CPU hungry), - but code size is slightly bigger. - -config FEATURE_ETC_NETWORKS - bool "Support for /etc/networks" - default n - help - Enable support for network names in /etc/networks. This is - a rarely used feature which allows you to use names - instead of IP/mask pairs in route command. - -config FEATURE_EDITING - bool "Command line editing" - default n - help - Enable line editing (mainly for shell command line). - -config FEATURE_EDITING_MAX_LEN - int "Maximum length of input" - range 128 8192 - default 1024 - depends on FEATURE_EDITING - help - Line editing code uses on-stack buffers for storage. - You may want to decrease this parameter if your target machine - benefits from smaller stack usage. - -config FEATURE_EDITING_VI - bool "vi-style line editing commands" - default n - depends on FEATURE_EDITING - help - Enable vi-style line editing. In shells, this mode can be - turned on and off with "set -o vi" and "set +o vi". - -config FEATURE_EDITING_HISTORY - int "History size" - range 0 99999 - default 15 - depends on FEATURE_EDITING - help - Specify command history size. - -config FEATURE_EDITING_SAVEHISTORY - bool "History saving" - default n - depends on ASH && FEATURE_EDITING - help - Enable history saving in ash shell. - -config FEATURE_TAB_COMPLETION - bool "Tab completion" - default n - depends on FEATURE_EDITING - help - Enable tab completion. - -config FEATURE_USERNAME_COMPLETION - bool "Username completion" - default n - depends on FEATURE_TAB_COMPLETION - help - Enable username completion. - -config FEATURE_EDITING_FANCY_PROMPT - bool "Fancy shell prompts" - default n - depends on FEATURE_EDITING - help - Setting this option allows for prompts to use things like \w and - \$ and escape codes. - -config FEATURE_EDITING_ASK_TERMINAL - bool "Query cursor position from terminal" - default n - depends on FEATURE_EDITING - help - Allow usage of "ESC [ 6 n" sequence. Terminal answers back with - current cursor position. This information is used to make line - editing more robust in some cases. - If you are not sure whether your terminals respond to this code - correctly, or want to save on code size (about 400 bytes), - then do not turn this option on. - -config FEATURE_NON_POSIX_CP - bool "Non-POSIX, but safer, copying to special nodes" - default y - help - With this option, "cp file symlink" will delete symlink - and create a regular file. This does not conform to POSIX, - but prevents a symlink attack. - Similarly, "cp file device" will not send file's data - to the device. - -config FEATURE_VERBOSE_CP_MESSAGE - bool "Give more precise messages when copy fails (cp, mv etc)" - default n - help - Error messages with this feature enabled: - $ cp file /does_not_exist/file - cp: cannot create '/does_not_exist/file': Path does not exist - $ cp file /vmlinuz/file - cp: cannot stat '/vmlinuz/file': Path has non-directory component - If this feature is not enabled, they will be, respectively: - cp: cannot create '/does_not_exist/file': No such file or directory - cp: cannot stat '/vmlinuz/file': Not a directory - This will cost you ~60 bytes. - -config FEATURE_COPYBUF_KB - int "Copy buffer size, in kilobytes" - range 1 1024 - default 4 - help - Size of buffer used by cp, mv, install etc. - Buffers which are 4 kb or less will be allocated on stack. - Bigger buffers will be allocated with mmap, with fallback to 4 kb - stack buffer if mmap fails. - -config MONOTONIC_SYSCALL - bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" - default y - help - Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring - time intervals (time, ping, traceroute etc need this). - Probably requires Linux 2.6+. If not selected, gettimeofday - will be used instead (which gives wrong results if date/time - is reset). - -config IOCTL_HEX2STR_ERROR - bool "Use ioctl names rather than hex values in error messages" - default y - help - Use ioctl names rather than hex values in error messages - (e.g. VT_DISALLOCATE rather than 0x5608). If disabled this - saves about 1400 bytes. - -config FEATURE_HWIB - bool "Support infiniband HW" - default y - help - Support for printing infiniband addresses in - network applets. - -endmenu diff --git a/libbb/Config.src b/libbb/Config.src new file mode 100644 index 000000000..55367b21b --- /dev/null +++ b/libbb/Config.src @@ -0,0 +1,176 @@ +# +# For a description of the syntax of this configuration file, +# see scripts/kbuild/config-language.txt. +# + +menu "Busybox Library Tuning" + +config PASSWORD_MINLEN + int "Minimum password length" + default 6 + range 5 32 + help + Minimum allowable password length. + +config MD5_SIZE_VS_SPEED + int "MD5: Trade bytes for speed (0:fast, 3:slow)" + default 2 + range 0 3 + help + Trade binary size versus speed for the md5sum algorithm. + Approximate values running uClibc and hashing + linux-2.4.4.tar.bz2 were: + user times (sec) text size (386) + 0 (fastest) 1.1 6144 + 1 1.4 5392 + 2 3.0 5088 + 3 (smallest) 5.1 4912 + +config FEATURE_FAST_TOP + bool "Faster /proc scanning code (+100 bytes)" + default n + help + This option makes top (and ps) ~20% faster (or 20% less CPU hungry), + but code size is slightly bigger. + +config FEATURE_ETC_NETWORKS + bool "Support for /etc/networks" + default n + help + Enable support for network names in /etc/networks. This is + a rarely used feature which allows you to use names + instead of IP/mask pairs in route command. + +config FEATURE_EDITING + bool "Command line editing" + default n + help + Enable line editing (mainly for shell command line). + +config FEATURE_EDITING_MAX_LEN + int "Maximum length of input" + range 128 8192 + default 1024 + depends on FEATURE_EDITING + help + Line editing code uses on-stack buffers for storage. + You may want to decrease this parameter if your target machine + benefits from smaller stack usage. + +config FEATURE_EDITING_VI + bool "vi-style line editing commands" + default n + depends on FEATURE_EDITING + help + Enable vi-style line editing. In shells, this mode can be + turned on and off with "set -o vi" and "set +o vi". + +config FEATURE_EDITING_HISTORY + int "History size" + range 0 99999 + default 15 + depends on FEATURE_EDITING + help + Specify command history size. + +config FEATURE_EDITING_SAVEHISTORY + bool "History saving" + default n + depends on ASH && FEATURE_EDITING + help + Enable history saving in ash shell. + +config FEATURE_TAB_COMPLETION + bool "Tab completion" + default n + depends on FEATURE_EDITING + help + Enable tab completion. + +config FEATURE_USERNAME_COMPLETION + bool "Username completion" + default n + depends on FEATURE_TAB_COMPLETION + help + Enable username completion. + +config FEATURE_EDITING_FANCY_PROMPT + bool "Fancy shell prompts" + default n + depends on FEATURE_EDITING + help + Setting this option allows for prompts to use things like \w and + \$ and escape codes. + +config FEATURE_EDITING_ASK_TERMINAL + bool "Query cursor position from terminal" + default n + depends on FEATURE_EDITING + help + Allow usage of "ESC [ 6 n" sequence. Terminal answers back with + current cursor position. This information is used to make line + editing more robust in some cases. + If you are not sure whether your terminals respond to this code + correctly, or want to save on code size (about 400 bytes), + then do not turn this option on. + +config FEATURE_NON_POSIX_CP + bool "Non-POSIX, but safer, copying to special nodes" + default y + help + With this option, "cp file symlink" will delete symlink + and create a regular file. This does not conform to POSIX, + but prevents a symlink attack. + Similarly, "cp file device" will not send file's data + to the device. + +config FEATURE_VERBOSE_CP_MESSAGE + bool "Give more precise messages when copy fails (cp, mv etc)" + default n + help + Error messages with this feature enabled: + $ cp file /does_not_exist/file + cp: cannot create '/does_not_exist/file': Path does not exist + $ cp file /vmlinuz/file + cp: cannot stat '/vmlinuz/file': Path has non-directory component + If this feature is not enabled, they will be, respectively: + cp: cannot create '/does_not_exist/file': No such file or directory + cp: cannot stat '/vmlinuz/file': Not a directory + This will cost you ~60 bytes. + +config FEATURE_COPYBUF_KB + int "Copy buffer size, in kilobytes" + range 1 1024 + default 4 + help + Size of buffer used by cp, mv, install etc. + Buffers which are 4 kb or less will be allocated on stack. + Bigger buffers will be allocated with mmap, with fallback to 4 kb + stack buffer if mmap fails. + +config MONOTONIC_SYSCALL + bool "Use clock_gettime(CLOCK_MONOTONIC) syscall" + default y + help + Use clock_gettime(CLOCK_MONOTONIC) syscall for measuring + time intervals (time, ping, traceroute etc need this). + Probably requires Linux 2.6+. If not selected, gettimeofday + will be used instead (which gives wrong results if date/time + is reset). + +config IOCTL_HEX2STR_ERROR + bool "Use ioctl names rather than hex values in error messages" + default y + help + Use ioctl names rather than hex values in error messages + (e.g. VT_DISALLOCATE rather than 0x5608). If disabled this + saves about 1400 bytes. + +config FEATURE_HWIB + bool "Support infiniband HW" + default y + help + Support for printing infiniband addresses in + network applets. + +endmenu diff --git a/libbb/Kbuild b/libbb/Kbuild deleted file mode 100644 index 1b11d5d39..000000000 --- a/libbb/Kbuild +++ /dev/null @@ -1,172 +0,0 @@ -# Makefile for busybox -# -# Copyright (C) 1999-2005 by Erik Andersen -# -# Licensed under the GPL v2, see the file LICENSE in this tarball. - -lib-y:= - -lib-y += appletlib.o -lib-y += ask_confirmation.o -lib-y += bb_askpass.o -lib-y += bb_basename.o -lib-y += bb_do_delay.o -lib-y += bb_pwd.o -lib-y += bb_qsort.o -#lib-y += bb_strtod.o -lib-y += bb_strtonum.o -lib-y += change_identity.o -lib-y += chomp.o -lib-y += compare_string_array.o -lib-y += concat_path_file.o -lib-y += concat_subpath_file.o -lib-y += copy_file.o -lib-y += copyfd.o -lib-y += crc32.o -lib-y += create_icmp6_socket.o -lib-y += create_icmp_socket.o -lib-y += default_error_retval.o -lib-y += device_open.o -lib-y += dump.o -lib-y += error_msg.o -lib-y += error_msg_and_die.o -lib-y += execable.o -lib-y += fclose_nonstdin.o -lib-y += fflush_stdout_and_exit.o -lib-y += fgets_str.o -lib-y += find_pid_by_name.o -lib-y += find_root_device.o -lib-y += full_write.o -lib-y += get_console.o -lib-y += get_last_path_component.o -lib-y += get_line_from_file.o -lib-y += getopt32.o -lib-y += getpty.o -lib-y += get_volsize.o -lib-y += herror_msg.o -lib-y += herror_msg_and_die.o -lib-y += human_readable.o -lib-y += inet_common.o -lib-y += info_msg.o -lib-y += inode_hash.o -lib-y += isdirectory.o -lib-y += kernel_version.o -lib-y += last_char_is.o -lib-y += lineedit.o lineedit_ptr_hack.o -lib-y += llist.o -lib-y += login.o -lib-y += make_directory.o -lib-y += makedev.o -lib-y += match_fstype.o -lib-y += md5.o -# Alternative (disabled) implementation -#lib-y += md5prime.o -lib-y += messages.o -lib-y += mode_string.o -lib-y += mtab_file.o -lib-y += obscure.o -lib-y += parse_mode.o -lib-y += parse_config.o -lib-y += perror_msg.o -lib-y += perror_msg_and_die.o -lib-y += perror_nomsg.o -lib-y += perror_nomsg_and_die.o -lib-y += pidfile.o -lib-y += platform.o -lib-y += printable.o -lib-y += printable_string.o -lib-y += print_flags.o -lib-y += process_escape_sequence.o -lib-y += procps.o -lib-y += progress.o -lib-y += ptr_to_globals.o -lib-y += read.o -lib-y += read_key.o -lib-y += recursive_action.o -lib-y += remove_file.o -lib-y += run_shell.o -lib-y += safe_gethostname.o -lib-y += safe_poll.o -lib-y += safe_strncpy.o -lib-y += safe_write.o -lib-y += setup_environment.o -lib-y += sha1.o -lib-y += signals.o -lib-y += simplify_path.o -lib-y += single_argv.o -lib-y += skip_whitespace.o -lib-y += speed_table.o -lib-y += str_tolower.o -lib-y += strrstr.o -lib-y += time.o -lib-y += trim.o -lib-y += u_signal_names.o -lib-y += udp_io.o -lib-y += uuencode.o -lib-y += vdprintf.o -lib-y += verror_msg.o -lib-y += vfork_daemon_rexec.o -lib-y += warn_ignoring_args.o -lib-y += wfopen.o -lib-y += wfopen_input.o -lib-y += write.o -lib-y += xatonum.o -lib-y += xconnect.o -lib-y += xfuncs.o -lib-y += xfuncs_printf.o -lib-y += xfunc_die.o -lib-y += xgetcwd.o -lib-y += xgethostbyname.o -lib-y += xreadlink.o -lib-y += xrealloc_vector.o - -lib-$(CONFIG_FEATURE_UTMP) += utmp.o - -# A mix of optimizations (why build stuff we know won't be used) -# and objects which may fail to build (SELinux on selinux-less system) -lib-$(CONFIG_SELINUX) += selinux_common.o -lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o -lib-$(CONFIG_UNICODE_SUPPORT) += unicode.o -lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o - -lib-$(CONFIG_LOSETUP) += loop.o -lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o - -lib-$(CONFIG_ADDGROUP) += update_passwd.o -lib-$(CONFIG_ADDUSER) += update_passwd.o -lib-$(CONFIG_DELGROUP) += update_passwd.o -lib-$(CONFIG_DELUSER) += update_passwd.o - -lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o -lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o -lib-$(CONFIG_CRYPTPW) += pw_encrypt.o -lib-$(CONFIG_SULOGIN) += pw_encrypt.o -lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o -lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o -lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o -lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o - -lib-$(CONFIG_DF) += find_mount_point.o -lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o -lib-$(CONFIG_MKFS_EXT2) += find_mount_point.o -lib-$(CONFIG_MKFS_REISER) += find_mount_point.o -lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o -lib-$(CONFIG_MOUNT) += find_mount_point.o - -lib-$(CONFIG_HWCLOCK) += rtc.o -lib-$(CONFIG_RTCWAKE) += rtc.o - -# We shouldn't build xregcomp.c if we don't need it - this ensures we don't -# require regex.h to be in the include dir even if we don't need it thereby -# allowing us to build busybox even if uclibc regex support is disabled. - -lib-$(CONFIG_AWK) += xregcomp.o -lib-$(CONFIG_SED) += xregcomp.o -lib-$(CONFIG_GREP) += xregcomp.o -lib-$(CONFIG_EXPR) += xregcomp.o -lib-$(CONFIG_MDEV) += xregcomp.o -lib-$(CONFIG_LESS) += xregcomp.o -lib-$(CONFIG_PGREP) += xregcomp.o -lib-$(CONFIG_PKILL) += xregcomp.o -lib-$(CONFIG_DEVFSD) += xregcomp.o -lib-$(CONFIG_FEATURE_FIND_REGEX) += xregcomp.o diff --git a/libbb/Kbuild.src b/libbb/Kbuild.src new file mode 100644 index 000000000..1b11d5d39 --- /dev/null +++ b/libbb/Kbuild.src @@ -0,0 +1,172 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under the GPL v2, see the file LICENSE in this tarball. + +lib-y:= + +lib-y += appletlib.o +lib-y += ask_confirmation.o +lib-y += bb_askpass.o +lib-y += bb_basename.o +lib-y += bb_do_delay.o +lib-y += bb_pwd.o +lib-y += bb_qsort.o +#lib-y += bb_strtod.o +lib-y += bb_strtonum.o +lib-y += change_identity.o +lib-y += chomp.o +lib-y += compare_string_array.o +lib-y += concat_path_file.o +lib-y += concat_subpath_file.o +lib-y += copy_file.o +lib-y += copyfd.o +lib-y += crc32.o +lib-y += create_icmp6_socket.o +lib-y += create_icmp_socket.o +lib-y += default_error_retval.o +lib-y += device_open.o +lib-y += dump.o +lib-y += error_msg.o +lib-y += error_msg_and_die.o +lib-y += execable.o +lib-y += fclose_nonstdin.o +lib-y += fflush_stdout_and_exit.o +lib-y += fgets_str.o +lib-y += find_pid_by_name.o +lib-y += find_root_device.o +lib-y += full_write.o +lib-y += get_console.o +lib-y += get_last_path_component.o +lib-y += get_line_from_file.o +lib-y += getopt32.o +lib-y += getpty.o +lib-y += get_volsize.o +lib-y += herror_msg.o +lib-y += herror_msg_and_die.o +lib-y += human_readable.o +lib-y += inet_common.o +lib-y += info_msg.o +lib-y += inode_hash.o +lib-y += isdirectory.o +lib-y += kernel_version.o +lib-y += last_char_is.o +lib-y += lineedit.o lineedit_ptr_hack.o +lib-y += llist.o +lib-y += login.o +lib-y += make_directory.o +lib-y += makedev.o +lib-y += match_fstype.o +lib-y += md5.o +# Alternative (disabled) implementation +#lib-y += md5prime.o +lib-y += messages.o +lib-y += mode_string.o +lib-y += mtab_file.o +lib-y += obscure.o +lib-y += parse_mode.o +lib-y += parse_config.o +lib-y += perror_msg.o +lib-y += perror_msg_and_die.o +lib-y += perror_nomsg.o +lib-y += perror_nomsg_and_die.o +lib-y += pidfile.o +lib-y += platform.o +lib-y += printable.o +lib-y += printable_string.o +lib-y += print_flags.o +lib-y += process_escape_sequence.o +lib-y += procps.o +lib-y += progress.o +lib-y += ptr_to_globals.o +lib-y += read.o +lib-y += read_key.o +lib-y += recursive_action.o +lib-y += remove_file.o +lib-y += run_shell.o +lib-y += safe_gethostname.o +lib-y += safe_poll.o +lib-y += safe_strncpy.o +lib-y += safe_write.o +lib-y += setup_environment.o +lib-y += sha1.o +lib-y += signals.o +lib-y += simplify_path.o +lib-y += single_argv.o +lib-y += skip_whitespace.o +lib-y += speed_table.o +lib-y += str_tolower.o +lib-y += strrstr.o +lib-y += time.o +lib-y += trim.o +lib-y += u_signal_names.o +lib-y += udp_io.o +lib-y += uuencode.o +lib-y += vdprintf.o +lib-y += verror_msg.o +lib-y += vfork_daemon_rexec.o +lib-y += warn_ignoring_args.o +lib-y += wfopen.o +lib-y += wfopen_input.o +lib-y += write.o +lib-y += xatonum.o +lib-y += xconnect.o +lib-y += xfuncs.o +lib-y += xfuncs_printf.o +lib-y += xfunc_die.o +lib-y += xgetcwd.o +lib-y += xgethostbyname.o +lib-y += xreadlink.o +lib-y += xrealloc_vector.o + +lib-$(CONFIG_FEATURE_UTMP) += utmp.o + +# A mix of optimizations (why build stuff we know won't be used) +# and objects which may fail to build (SELinux on selinux-less system) +lib-$(CONFIG_SELINUX) += selinux_common.o +lib-$(CONFIG_FEATURE_MTAB_SUPPORT) += mtab.o +lib-$(CONFIG_UNICODE_SUPPORT) += unicode.o +lib-$(CONFIG_FEATURE_CHECK_NAMES) += die_if_bad_username.o + +lib-$(CONFIG_LOSETUP) += loop.o +lib-$(CONFIG_FEATURE_MOUNT_LOOP) += loop.o + +lib-$(CONFIG_ADDGROUP) += update_passwd.o +lib-$(CONFIG_ADDUSER) += update_passwd.o +lib-$(CONFIG_DELGROUP) += update_passwd.o +lib-$(CONFIG_DELUSER) += update_passwd.o + +lib-$(CONFIG_PASSWD) += pw_encrypt.o update_passwd.o +lib-$(CONFIG_CHPASSWD) += pw_encrypt.o update_passwd.o +lib-$(CONFIG_CRYPTPW) += pw_encrypt.o +lib-$(CONFIG_SULOGIN) += pw_encrypt.o +lib-$(CONFIG_VLOCK) += pw_encrypt.o correct_password.o +lib-$(CONFIG_SU) += pw_encrypt.o correct_password.o +lib-$(CONFIG_LOGIN) += pw_encrypt.o correct_password.o +lib-$(CONFIG_FEATURE_HTTPD_AUTH_MD5) += pw_encrypt.o + +lib-$(CONFIG_DF) += find_mount_point.o +lib-$(CONFIG_MKFS_MINIX) += find_mount_point.o +lib-$(CONFIG_MKFS_EXT2) += find_mount_point.o +lib-$(CONFIG_MKFS_REISER) += find_mount_point.o +lib-$(CONFIG_FSCK_MINIX) += find_mount_point.o +lib-$(CONFIG_MOUNT) += find_mount_point.o + +lib-$(CONFIG_HWCLOCK) += rtc.o +lib-$(CONFIG_RTCWAKE) += rtc.o + +# We shouldn't build xregcomp.c if we don't need it - this ensures we don't +# require regex.h to be in the include dir even if we don't need it thereby +# allowing us to build busybox even if uclibc regex support is disabled. + +lib-$(CONFIG_AWK) += xregcomp.o +lib-$(CONFIG_SED) += xregcomp.o +lib-$(CONFIG_GREP) += xregcomp.o +lib-$(CONFIG_EXPR) += xregcomp.o +lib-$(CONFIG_MDEV) += xregcomp.o +lib-$(CONFIG_LESS) += xregcomp.o +lib-$(CONFIG_PGREP) += xregcomp.o +lib-$(CONFIG_PKILL) += xregcomp.o +lib-$(CONFIG_DEVFSD) += xregcomp.o +lib-$(CONFIG_FEATURE_FIND_REGEX) += xregcomp.o -- cgit v1.2.3