diff options
author | Andre Heider | 2009-01-03 19:26:44 +0000 |
---|---|---|
committer | Andre Heider | 2009-01-03 19:26:44 +0000 |
commit | c43b79091208228e2f9c5feee8c1d04fa0eb25bb (patch) | |
tree | dacc7edde742cf56911a077b2652d04578024128 /backends/platform/wii/Makefile | |
parent | 043ddf0ae6566d94e928b4b1341ca2521cdd1a23 (diff) | |
download | scummvm-rg350-c43b79091208228e2f9c5feee8c1d04fa0eb25bb.tar.gz scummvm-rg350-c43b79091208228e2f9c5feee8c1d04fa0eb25bb.tar.bz2 scummvm-rg350-c43b79091208228e2f9c5feee8c1d04fa0eb25bb.zip |
debug Makefile targets
svn-id: r35709
Diffstat (limited to 'backends/platform/wii/Makefile')
-rw-r--r-- | backends/platform/wii/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/backends/platform/wii/Makefile b/backends/platform/wii/Makefile index 6638e0ef8f..dd3728a05e 100644 --- a/backends/platform/wii/Makefile +++ b/backends/platform/wii/Makefile @@ -61,6 +61,7 @@ LD = $(PREFIX)gcc AR = $(PREFIX)ar cru RANLIB = $(PREFIX)ranlib STRIP = $(PREFIX)strip -g +GDB = $(PREFIX)gdb MKDIR = mkdir -p RM = rm -f RM_REC = rm -rf @@ -162,6 +163,12 @@ else $(DEVKITPPC)/bin/wiiload $(TARGET).dol endif +gdb: + $(GDB) -n $(TARGET).elf + +debug: + $(GDB) -n $(TARGET).elf -x gdb.txt + dist: $(MKDIR) dist/scummvm ifeq ($(GAMECUBE),1) |