mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
makefiles: documentation for BINFILE
Document `BINFILE` in the same ways as `HEXFILE`. The file does not need to be exported so no reason to do it though. It also adds it in the `info-build` output in the same way as `HEXFILE`.
This commit is contained in:
parent
065f85cf47
commit
b62488eb61
@ -45,6 +45,7 @@ info-build:
|
||||
@echo ''
|
||||
@echo 'ELFFILE: $(ELFFILE)'
|
||||
@echo 'HEXFILE: $(HEXFILE)'
|
||||
@echo 'BINFILE: $(BINFILE)'
|
||||
@echo 'FLASHFILE: $(FLASHFILE)'
|
||||
@echo ''
|
||||
@echo 'FEATURES_USED:'
|
||||
|
@ -58,7 +58,7 @@ export ASFLAGS # Flags for the assembler.
|
||||
export LINK # The command used to link the files. Must take the same parameters as GCC, i.e. "ld" won't work.
|
||||
# LINKFLAGS # Flags to supply in the linking step.
|
||||
export LTOFLAGS # extra CFLAGS for compiling with link time optimization
|
||||
export OBJCOPY # The command used to create the HEXFILE.
|
||||
export OBJCOPY # The command used to create the HEXFILE and BINFILE.
|
||||
export OFLAGS # The parameter for OBJCOPY, e.g. to strip the debug information.
|
||||
export OBJDUMP # The command used to create the assembly listing.
|
||||
export OBJDUMPFLAGS # The parameter for OBJDUMP.
|
||||
@ -77,6 +77,7 @@ export FLASH_ADDR # Define an offset to flash code into ROM memory.
|
||||
export PORT # The port to connect the TERMPROG to.
|
||||
export ELFFILE # The unstripped result of the compilation.
|
||||
export HEXFILE # The 'intel hex' stripped result of the compilation.
|
||||
# BINFILE # The 'binary' stripped result of the compilation.
|
||||
# FLASHFILE # The output file used for flashing (transition phase: only if defined)
|
||||
# DEBUGGER # The command to call on "make debug", usually a script starting the GDB front-end.
|
||||
# DEBUGGER_FLAGS # The parameters to supply to DEBUGGER.
|
||||
|
Loading…
Reference in New Issue
Block a user