diff options
| author | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:20:36 +0000 |
|---|---|---|
| committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:20:36 +0000 |
| commit | b3db55f427570b6bb95d0fa82454367154573d9e (patch) | |
| tree | d09dd3866f2b3a8a87cc7215f179efcc03daa0ce | |
| parent | c8a5fbbaa61d20f70717b33a0f63be13887f45d8 (diff) | |
| download | rockbox-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/Makefile | 4 |
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 |