Skip to content

Commit

Permalink
Add ability to dump all makefile variables for the specified target. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored Aug 15, 2020
1 parent 6a8cbaa commit 5cb57c7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tmk_core/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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 \
Expand Down

0 comments on commit 5cb57c7

Please sign in to comment.