summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Malesinski <tomal@rockbox.org>2006-02-03 23:20:36 +0000
committerTomasz Malesinski <tomal@rockbox.org>2006-02-03 23:20:36 +0000
commitb3db55f427570b6bb95d0fa82454367154573d9e (patch)
treed09dd3866f2b3a8a87cc7215f179efcc03daa0ce
parentc8a5fbbaa61d20f70717b33a0f63be13887f45d8 (diff)
downloadrockbox-b3db55f427570b6bb95d0fa82454367154573d9e.zip
rockbox-b3db55f427570b6bb95d0fa82454367154573d9e.tar.gz
rockbox-b3db55f427570b6bb95d0fa82454367154573d9e.tar.bz2
rockbox-b3db55f427570b6bb95d0fa82454367154573d9e.tar.xz
Made rockbox.elf build with DEBUG enabled.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8552 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index baa1dd7..294bc69 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -75,7 +75,9 @@ all: build-bitmaps $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS)
else
# regular target build
-ifndef DEBUG
+ifdef DEBUG
+REALBIN = $(OBJDIR)/rockbox.elf
+else
# this is not needed to get built when doing debug builds
REALBIN = $(BUILDDIR)/$(BINARY)
endif