projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove remaining void* descriptor casts in the projects and demos that were not remov...
[pub/USBasp.git]
/
Demos
/
Host
/
ClassDriver
/
VirtualSerialHost
/
makefile
diff --git
a/Demos/Host/ClassDriver/VirtualSerialHost/makefile
b/Demos/Host/ClassDriver/VirtualSerialHost/makefile
index
6399d2d
..
d16e832
100644
(file)
--- a/
Demos/Host/ClassDriver/VirtualSerialHost/makefile
+++ b/
Demos/Host/ClassDriver/VirtualSerialHost/makefile
@@
-488,7
+488,10
@@
end:
# Display size of file.
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
# Display size of file.
HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex
-ELFSIZE = $(SIZE) --mcu=$(MCU) --format=avr $(TARGET).elf
+ELFSIZE = $(SIZE) $(MCU_FLAG) $(FORMAT_FLAG) $(TARGET).elf
+MCU_FLAG = $(shell $(SIZE) --help | grep -- --mcu > /dev/null && echo --mcu=$(MCU) )
+FORMAT_FLAG = $(shell $(SIZE) --help | grep -- --format=.*avr > /dev/null && echo --format=avr )
+
sizebefore:
@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \
sizebefore:
@if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \