mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3f145413f5
* Remove '-Oihex' and '-Obinary' from OFLAGS for all boards It is now provided by the Makefile.include rule.
14 lines
467 B
Makefile
14 lines
467 B
Makefile
export FLASHER ?= $(RIOTBASE)/dist/tools/openocd/openocd.sh
|
|
export DEBUGGER = $(RIOTBASE)/dist/tools/openocd/openocd.sh
|
|
export DEBUGSERVER = $(RIOTBASE)/dist/tools/openocd/openocd.sh
|
|
export RESET ?= $(RIOTBASE)/dist/tools/openocd/openocd.sh
|
|
|
|
export FFLAGS ?= flash
|
|
export DEBUGGER_FLAGS ?= debug
|
|
export DEBUGSERVER_FLAGS ?= debug-server
|
|
export RESET_FLAGS ?= reset
|
|
|
|
ifneq (,$(DEBUG_ADAPTER))
|
|
include $(RIOTMAKE)/tools/openocd-adapters/$(DEBUG_ADAPTER).inc.mk
|
|
endif
|