forked from len0rd/rockbox
No longer build the main output binary file when doing debug builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7780 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
33cc6deb9e
commit
3cd5c646d0
1 changed files with 8 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue