Skip to content
Snippets Groups Projects
Commit 5a8e4492 authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

Merge pull request #1723 from LudwigOrtmann/issue-1719

make: add objdump target + .PHONY missing targets from Makefile.include
parents 7e860449 71b961be
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,7 @@ BASELIBS += $(BINDIR)$(BOARD)_base.a
BASELIBS += $(BINDIR)${APPLICATION}.a
BASELIBS += $(USEPKG:%=${BINDIR}%.a)
.PHONY: all clean flash doc term
.PHONY: all clean flash term doc debug debug-server reset objdump
ELFFILE ?= $(BINDIR)$(APPLICATION).elf
HEXFILE ?= $(ELFFILE:.elf=.hex)
......@@ -207,6 +207,9 @@ debug-server:
reset:
$(RESET) $(RESET_FLAGS)
objdump:
$(PREFIX)objdump -S -D -h $(ELFFILE) | less
# Extra make goals for testing and comparing changes.
include $(RIOTBASE)/Makefile.buildtests
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment