summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 0c888a1..aa56538 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -53,7 +53,13 @@ all: $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS)
else
# regular target build
-all: $(BUILDDIR)/$(BINARY) $(FLASHFILE) $(CODECS) $(ROCKS) $(ARCHOSROM)
+
+ifndef DEBUG
+# this is not needed to get built when doing debug builds
+REALBIN = $(BUILDDIR)/$(BINARY)
+endif
+
+all: $(REALBIN) $(FLASHFILE) $(CODECS) $(ROCKS) $(ARCHOSROM)
endif
dep: $(DEPFILE)
@@ -103,7 +109,7 @@ $(OBJDIR)/rockbox.asm: $(OBJDIR)/rockbox.bin
$(BUILDDIR)/$(BINARY) : $(OBJDIR)/rockbox.bin
@echo "Build firmware file"
- @$(MKFIRMWARE) $< $@
+ $(SILENT)$(MKFIRMWARE) $< $@
else
# this is a simulator build