summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-03-30 12:00:19 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-03-30 12:00:19 +0000
commite2ee28cd537c7f8202b1e3fa16753522957dc41d (patch)
tree482bde40f5ebbc9a07fe55d8adbb14fe3a2b7832
parent22c0a2d747f56f67a1291512af3a41d617186ecc (diff)
downloadrockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.tar.gz
rockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.zip
No need to create .mod/.ajz/.ucl files for the debug builds
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4454 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile
index aaf31479f4..319ed316bb 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -90,7 +90,11 @@ ifndef TOOLSDIR
90 TOOLSDIR=../tools 90 TOOLSDIR=../tools
91endif 91endif
92 92
93ifdef DEBUG
94all : $(OBJDIR)/rockbox.elf rocks
95else
93all : $(OBJDIR)/$(OUTNAME) $(OBJDIR)/rockbox.ucl rocks 96all : $(OBJDIR)/$(OUTNAME) $(OBJDIR)/rockbox.ucl rocks
97endif
94 98
95rocks: 99rocks:
96 $(MAKE) -C plugins TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR) VERSION=$(VERSION) EXTRA_DEFINES="$(EXTRA_DEFINES)" MEM=${MEM} 100 $(MAKE) -C plugins TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR) VERSION=$(VERSION) EXTRA_DEFINES="$(EXTRA_DEFINES)" MEM=${MEM}