summaryrefslogtreecommitdiff
path: root/make/util.mk
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-01-18 06:48:48 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-01-18 06:48:48 +0000
commit6260e4a3af0d4cd136e7976feb3465489da59141 (patch)
treef3bdd638d802b20a7841b02a015c0f84c1b6eb4f /make/util.mk
parent9edf5cdd69d2d2a74b37ec14e475c5d6367e6eec (diff)
Add more make utility functions.
- With tests. :) git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@93716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'make/util.mk')
-rw-r--r--make/util.mk57
1 files changed, 55 insertions, 2 deletions
diff --git a/make/util.mk b/make/util.mk
index 2ce9a46a2..6764a91cb 100644
--- a/make/util.mk
+++ b/make/util.mk
@@ -1,4 +1,4 @@
-# Makefile utilities
+# Generic Makefile Utilities
###
# Utility functions
@@ -15,6 +15,19 @@ streq = $(if $(1),$(if $(subst $(1),,$(2))$(subst $(2),,$(1)),,true),$(if $(2),,
# Return "true" if LHS != RHS, otherwise "".
strneq = $(if $(call streq,$(1),$(2)),,true)
+# Function: contains list item
+#
+# Return "true" if 'list' contains the value 'item'.
+contains = $(if $(strip $(foreach i,$(1),$(if $(call streq,$(2),$(i)),T,))),true,)
+
+# Function: is_subset a b
+# Return "true" if 'a' is a subset of 'b'.
+is_subset = $(if $(strip $(set_difference $(1),$(2))),,true)
+
+# Function: set_difference a b
+# Return a - b.
+set_difference = $(foreach i,$(1),$(if $(call contains,$(2),$(i)),,$(i)))
+
# Function: Set variable value
#
# Set the given make variable to the given value.
@@ -25,6 +38,47 @@ Set = $(eval $(1) := $(2))
# Append the given value to the given make variable.
Append = $(eval $(1) += $(2))
+# Function: IsDefined variable
+#
+# Check whether the given variable is defined.
+IsDefined = $(call strneq,undefined,$(flavor $(1)))
+
+# Function: IsUndefined variable
+#
+# Check whether the given variable is undefined.
+IsUndefined = $(call streq,undefined,$(flavor $(1)))
+
+# Function: VarOrDefault variable default-value
+#
+# Get the value of the given make variable, or the default-value if the variable
+# is undefined.
+VarOrDefault = $(if $(call IsDefined,$(1)),$($(1)),$(2))
+
+# Function: CheckValue variable
+#
+# Print the name, definition, and value of a variable, for testing make
+# utilities.
+#
+# Example:
+# foo = $(call streq,a,a)
+# $(call CheckValue,foo)
+# Example Output:
+# CHECKVALUE: foo: $(call streq,,) - true
+CheckValue = $(info CHECKVALUE: $(1): $(value $(1)) - $($(1)))
+
+# Function: Assert value message
+#
+# Check that a value is true, or give an error including the given message
+Assert = $(if $(1),,\
+ $(error Assertion failed: $(2)))
+
+# Function: AssertEqual variable expected-value
+#
+# Check that the value of a variable is 'expected-value'.
+AssertEqual = \
+ $(if $(call streq,$($(1)),$(2)),,\
+ $(error Assertion failed: $(1): $(value $(1)) - $($(1)) != $(2)))
+
###
# Clean up make behavior
@@ -38,4 +92,3 @@ Append = $(eval $(1) += $(2))
# and origin of XXX.
make-print-%:
$(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))
-