Browse Source

Add ability to dump all makefile variables for the specified target. (#8256)

pull/10202/head
Nick Brassel 3 years ago
committed by James Young
parent
commit
167daa9cf8
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      tmk_core/rules.mk

+ 7
- 1
tmk_core/rules.mk View File

@ -396,6 +396,12 @@ show_path:
@echo SRC=$(SRC)
@echo OBJ=$(OBJ)
dump_vars: ERROR_IF_EMPTY=""
dump_vars: ERROR_IF_NONBOOL=""
dump_vars: ERROR_IF_UNSET=""
dump_vars:
@$(foreach V,$(sort $(.VARIABLES)),$(if $(filter-out environment% default automatic,$(origin $V)),$(info $V=$($V))))
objs-size:
for i in $(OBJ); do echo $$i; done | sort | xargs $(SIZE)
@ -436,7 +442,7 @@ $(eval $(foreach OUTPUT,$(OUTPUTS),$(shell mkdir -p $(OUTPUT) 2>/dev/null)))
# Listing of phony targets.
.PHONY : all finish sizebefore sizeafter qmkversion \
.PHONY : all dump_vars finish sizebefore sizeafter qmkversion \
gccversion build elf hex eep lss sym coff extcoff \
clean clean_list debug gdb-config show_path \
program teensy dfu dfu-ee dfu-start \


Loading…
Cancel
Save