summaryrefslogtreecommitdiff
path: root/apps/Makefile
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 /apps/Makefile
parentc8a5fbbaa61d20f70717b33a0f63be13887f45d8 (diff)
downloadrockbox-b3db55f427570b6bb95d0fa82454367154573d9e.tar.gz
rockbox-b3db55f427570b6bb95d0fa82454367154573d9e.zip
Made rockbox.elf build with DEBUG enabled.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8552 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index baa1dd711d..294bc69976 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -75,7 +75,9 @@ all: build-bitmaps $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS)
75else 75else
76# regular target build 76# regular target build
77 77
78ifndef DEBUG 78ifdef DEBUG
79REALBIN = $(OBJDIR)/rockbox.elf
80else
79# this is not needed to get built when doing debug builds 81# this is not needed to get built when doing debug builds
80REALBIN = $(BUILDDIR)/$(BINARY) 82REALBIN = $(BUILDDIR)/$(BINARY)
81endif 83endif