summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/Makefile')
-rw-r--r--firmware/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index d09676fdb1..e9fe32dba5 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -43,10 +43,10 @@ $(OBJDIR)/thread.o: thread.c export/thread.h
43 $(call PRINTS,CC thread.c)$(CC) -c -O -fomit-frame-pointer $(CFLAGS) $< -o $@ 43 $(call PRINTS,CC thread.c)$(CC) -c -O -fomit-frame-pointer $(CFLAGS) $< -o $@
44 44
45$(BUILDDIR)/sysfont.h: ../fonts/rockbox_default.bdf 45$(BUILDDIR)/sysfont.h: ../fonts/rockbox_default.bdf
46 $(call PRINTS,Create sysfont.h)$(TOOLSDIR)/convbdf -h -o $@ $< 46 $(call PRINTS,Create sysfont.h)$(TOOLSDIR)/convbdf -l 255 -h -o $@ $<
47 47
48$(OBJDIR)/sysfont.o: ../fonts/rockbox_default.bdf 48$(OBJDIR)/sysfont.o: ../fonts/rockbox_default.bdf
49 $(call PRINTS,CONVBDF)$(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $< 49 $(call PRINTS,CONVBDF)$(TOOLSDIR)/convbdf -l 255 -c -o $(OBJDIR)/sysfont.c $<
50 $(call PRINTS,CC sysfont.c)$(CC) $(CFLAGS) -c $(OBJDIR)/sysfont.c -o $@ 50 $(call PRINTS,CC sysfont.c)$(CC) $(CFLAGS) -c $(OBJDIR)/sysfont.c -o $@
51 51
52-include $(DEPFILE) 52-include $(DEPFILE)