Made the size target look at the ELF file, not the hex, as per Jared Szechy's patch. Craig Leres made a similar comment
This commit is contained in:
parent
c6fef7c499
commit
b15aa4e88f
1 changed files with 2 additions and 2 deletions
|
@ -679,8 +679,8 @@ clean:
|
||||||
depends: $(DEPS)
|
depends: $(DEPS)
|
||||||
cat $(DEPS) > $(DEP_FILE)
|
cat $(DEPS) > $(DEP_FILE)
|
||||||
|
|
||||||
size: $(OBJDIR) $(TARGET_HEX)
|
size: $(OBJDIR) $(TARGET_ELF)
|
||||||
$(SIZE) $(TARGET_HEX)
|
$(SIZE) -C --mcu=$(MCU) $(TARGET_ELF)
|
||||||
|
|
||||||
show_boards:
|
show_boards:
|
||||||
$(PARSE_BOARD_CMD) --boards
|
$(PARSE_BOARD_CMD) --boards
|
||||||
|
|
Loading…
Reference in a new issue