aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobtoht <tob@featherwallet.org>2024-02-24 20:07:53 +0100
committertobtoht <tob@featherwallet.org>2024-05-21 09:59:23 +0200
commitc94ca0f785aff000c160ea6f4d48234bf5af280c (patch)
tree058e7ced19638b83ed43cf21dc36a0f65bed1e88
parentMerge pull request #9243 (diff)
downloadmonero-c94ca0f785aff000c160ea6f4d48234bf5af280c.tar.xz
depends: add command to print variables
-rw-r--r--contrib/depends/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/depends/Makefile b/contrib/depends/Makefile
index a1c93ae00..f612dbffb 100644
--- a/contrib/depends/Makefile
+++ b/contrib/depends/Makefile
@@ -1,5 +1,9 @@
.NOTPARALLEL :
+# Pattern rule to print variables, e.g. make print-all_packages
+print-%: FORCE
+ @echo '$($*)'
+
SOURCES_PATH ?= $(BASEDIR)/sources
BASE_CACHE ?= $(BASEDIR)/built
FALLBACK_DOWNLOAD_PATH ?= https://downloads.getmonero.org/depends-sources
@@ -184,3 +188,4 @@ download: download-osx download-linux download-win download-freebsd download-and
$(foreach package,$(all_packages),$(eval $(call ext_add_stages,$(package))))
.PHONY: install cached download-one download-osx download-linux download-win download-freebsd download-android download check-packages check-sources
+.PHONY: FORCE