Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Fadecandy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
scanlime
Fadecandy
Commits
0f84495c
Commit
0f84495c
authored
11 years ago
by
Micah Elizabeth Scott
Browse files
Options
Downloads
Patches
Plain Diff
More debug targets: 'disassemble' and 'symbols'
parent
badd2be6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
firmware/Makefile
+6
-3
6 additions, 3 deletions
firmware/Makefile
with
6 additions
and
3 deletions
firmware/Makefile
+
6
−
3
View file @
0f84495c
...
@@ -85,7 +85,10 @@ benchmark: install
...
@@ -85,7 +85,10 @@ benchmark: install
clean
:
clean
:
rm
-f
*
.d
*
.o
$(
TARGET
)
.elf
$(
TARGET
)
.dfu
$(
APP_HEX
)
rm
-f
*
.d
*
.o
$(
TARGET
)
.elf
$(
TARGET
)
.dfu
$(
APP_HEX
)
objdump
:
$(TARGET).elf
disassemble
:
$(TARGET).elf
$(
OBJDUMP
)
-d
$<
$(
OBJDUMP
)
-d
$<
| less
.PHONY
:
all clean install objdump benchmark
symbols
:
$(TARGET).elf
$(
OBJDUMP
)
-t
$<
|
sort
| less
.PHONY
:
all clean install disassemble symbols benchmark
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment