We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3538955 commit 0f95c08Copy full SHA for 0f95c08
build_keyboard.mk
@@ -398,6 +398,7 @@ $(KEYBOARD_OUTPUT)_CONFIG := $(PROJECT_CONFIG)
398
all: build check-size
399
build: elf cpfirmware
400
check-size: build
401
+objs-size: build
402
403
include show_options.mk
404
include $(TMK_PATH)/rules.mk
tmk_core/rules.mk
@@ -390,6 +390,9 @@ show_path:
390
@echo SRC=$(SRC)
391
@echo OBJ=$(OBJ)
392
393
+objs-size:
394
+ for i in $(OBJ); do echo $$i; done | sort | xargs $(SIZE)
395
+
396
ifeq ($(findstring avr-gcc,$(CC)),avr-gcc)
397
SIZE_MARGIN = 1024
0 commit comments