summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-10-07 08:20:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-10-07 08:20:25 +0000
commit59bec2eaa06025fc9cc056318e60ba0c7ba208ff (patch)
tree88e1e39ca1863a5ef33b2e486d555aee6b7f3ad1 /apps
parenta97fe2514d505cb4d55b73ac86367f0fb8cf8ba8 (diff)
downloadrockbox-59bec2eaa06025fc9cc056318e60ba0c7ba208ff.zip
rockbox-59bec2eaa06025fc9cc056318e60ba0c7ba208ff.tar.gz
rockbox-59bec2eaa06025fc9cc056318e60ba0c7ba208ff.tar.bz2
rockbox-59bec2eaa06025fc9cc056318e60ba0c7ba208ff.tar.xz
don't build UCL files for targets that don't support flashing
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5204 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 12d4c85..9dee7cb 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -21,9 +21,6 @@ endif
SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARGET) $(DEFINES) -E -P -include "config.h" - )
DIRS = .
-# set the ROMTARGET here
-ROMTARGET := $(ARCHOSROM)
-
ifdef APPEXTRA
DIRS += $(APPEXTRA)
INCLUDES += -I$(APPEXTRA)
@@ -42,7 +39,7 @@ MAXOUTFILE = $(OBJDIR)/romstart
ifdef DEBUG
all: $(OBJDIR)/rockbox.elf rocks
else
-all: $(OBJDIR)/$(BINARY) $(OBJDIR)/rockbox.ucl rocks $(ROMTARGET)
+all: $(OBJDIR)/$(BINARY) $(FLASHFILE) rocks $(ARCHOSROM)
endif
dep: $(DEPFILE)
@@ -101,7 +98,7 @@ $(OBJDIR)/rockbox.ucl: $(OBJDIR)/rockbox.bin
echo "fake" > $@; \
fi
-$(ARCHOSROM): $(OBJDIR)/rombox.bin $(MAXOUTFILE)
+$(OBJDIR)/rombox.ucl: $(OBJDIR)/rombox.bin $(MAXOUTFILE)
@a=`uclpack -h 2>/dev/null`; \
if test -n "$$a"; then \
echo "UCLPACK rombox" ; \