|
@@ -23,6 +23,14 @@ UPPERCASE = $(strip $(eval __tmp := $1) \
|
|
$(__tmp)))) \
|
|
$(__tmp)))) \
|
|
$(__tmp))
|
|
$(__tmp))
|
|
|
|
|
|
|
|
+# LOWERCASE macro -- transforms its arguments to lowercase
|
|
|
|
+# The above non-tr implementation is not needed, because LOWERCASE is not
|
|
|
|
+# called very often
|
|
|
|
+
|
|
|
|
+define LOWERCASE
|
|
|
|
+$(shell echo $1 | tr '[:upper:]' '[:lower:]')
|
|
|
|
+endef
|
|
|
|
+
|
|
#
|
|
#
|
|
# Manipulation of .config files based on the Kconfig
|
|
# Manipulation of .config files based on the Kconfig
|
|
# infrastructure. Used by the Busybox package, the Linux kernel
|
|
# infrastructure. Used by the Busybox package, the Linux kernel
|