From abe0f4db660212a9bca036ec47791c506c12d0ba Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Mon, 15 Apr 2024 22:45:12 -0400 Subject: [PATCH] add check-vars --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index d9afdff..62b58db 100644 --- a/Makefile +++ b/Makefile @@ -96,6 +96,14 @@ clean: ## Clean up leftover bits and stuff from build rm -f sql/*.sqlite rm -f sql/*.sqlite3 +.PHONY: check-vars +check-vars: ## display all computed vars (won't show passed in) + $(info --vars--) + $(foreach v, \ + $(filter-out $(FILTERED_VARS) FILTERED_VARS,$(.VARIABLES)), \ + $(info $(v) = $($(v)))) + @printf '' + .PHONY: extras/cloc extras/cloc: cloc HEAD --exclude-dir=usda.svg -- 2.52.0