Makefile for clearer disassembly and a sections target
This commit is contained in:
parent
86754df83b
commit
1e041aadfb
1 changed files with 4 additions and 1 deletions
5
makefile
5
makefile
|
@ -67,7 +67,10 @@ run: all
|
|||
|
||||
# View the text section of the binary
|
||||
inspect: all
|
||||
$(OBJDUMP) -d $(TARGET)
|
||||
$(OBJDUMP) -dC $(TARGET)
|
||||
|
||||
sections: all
|
||||
$(OBJDUMP) -h $(TARGET)
|
||||
|
||||
# View the disassembly
|
||||
raw: all
|
||||
|
|
Loading…
Reference in a new issue