summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-10-29 14:51:49 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-10-29 14:51:49 +0000
commit5fa5578284e007d5e95e8907d32b720462d2e51c (patch)
tree489b1e1b4b5450ca85377c856690176322ebadeb /firmware/Makefile
parent20754cf3703886a194841ed1b0e68b808236b83c (diff)
downloadrockbox-5fa5578284e007d5e95e8907d32b720462d2e51c.tar.gz
rockbox-5fa5578284e007d5e95e8907d32b720462d2e51c.zip
Adding non-existing files in SOURCES no longer causes strange sysfont.h error message. (Fixes #7583)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18921 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 9c5299ac03..0b80cf22e3 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -31,11 +31,9 @@ DEPFILE = $(OBJDIR)/dep-firmware
31 31
32all: $(OUTPUT) $(EXTRA_TARGETS) 32all: $(OUTPUT) $(EXTRA_TARGETS)
33 33
34$(DEPFILE): $(BUILDDIR)/sysfont.h
35
36dep: $(DEPFILE) 34dep: $(DEPFILE)
37 35
38$(OUTPUT): $(OBJS) $(DEPFILE) 36$(OUTPUT): $(BUILDDIR)/sysfont.h $(OBJS) $(DEPFILE)
39 $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $(OBJS) >/dev/null 2>&1 37 $(call PRINTS,AR+RANLIB $(@F))$(AR) ruv $@ $(OBJS) >/dev/null 2>&1
40 $(SILENT)$(RANLIB) $@ 38 $(SILENT)$(RANLIB) $@
41 39