diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-30 12:00:19 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-30 12:00:19 +0000 |
| commit | e2ee28cd537c7f8202b1e3fa16753522957dc41d (patch) | |
| tree | 482bde40f5ebbc9a07fe55d8adbb14fe3a2b7832 /apps | |
| parent | 22c0a2d747f56f67a1291512af3a41d617186ecc (diff) | |
| download | rockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.zip rockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.tar.gz rockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.tar.bz2 rockbox-e2ee28cd537c7f8202b1e3fa16753522957dc41d.tar.xz | |
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
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile index aaf3147..319ed31 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -90,7 +90,11 @@ ifndef TOOLSDIR TOOLSDIR=../tools endif +ifdef DEBUG +all : $(OBJDIR)/rockbox.elf rocks +else all : $(OBJDIR)/$(OUTNAME) $(OBJDIR)/rockbox.ucl rocks +endif rocks: $(MAKE) -C plugins TARGET=$(TARGET) DEBUG=$(DEBUG) OBJDIR=$(OBJDIR) VERSION=$(VERSION) EXTRA_DEFINES="$(EXTRA_DEFINES)" MEM=${MEM} |