Merge pull request #1745 from Pinata-Consulting/makefile-print-variable-utility
Makefile: add print-FOO utility target that prints the value of a make variable
This commit is contained in:
@@ -469,3 +469,10 @@ check-submodule-status:
|
|||||||
# Disable all suffix rules to improve Make performance on systems running older
|
# Disable all suffix rules to improve Make performance on systems running older
|
||||||
# versions of Make
|
# versions of Make
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
|
||||||
|
.PHONY: print-%
|
||||||
|
# Print any variable and it's origin. This helps figure out where the
|
||||||
|
# variable was defined and to distinguish between empty and undefined.
|
||||||
|
print-%:
|
||||||
|
@echo "$*=$($*)"
|
||||||
|
@echo "Origin is: $(origin $*)"
|
||||||
|
|||||||
Reference in New Issue
Block a user