summaryrefslogtreecommitdiff
path: root/firmware/Makefile
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-09-02 00:09:19 +0000
committerJens Arnold <amiconn@rockbox.org>2008-09-02 00:09:19 +0000
commita4124e00b9b4a206d1b375468c4ff7efd0cb7908 (patch)
tree47b90b1c4df5df26edc9032aa0d00286f8a6ccf4 /firmware/Makefile
parentc9e31fba4dce2763f7beb0471e3186fdffeb5ae9 (diff)
downloadrockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.tar.gz
rockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.zip
Font cleanup step 1: * alt8x8 - completely broken encoding. * atari-small - ASCII only, not used by any theme. * clR6x8-8859-2 - integrated into rockbox_default. * courB* - not used by any theme. * Hebrew-* - bad unicode coverage, essentially unused. * ter-u??v - 'EGA/VGA bold' versions of ter-u??b, meaningless in rockbox. * timR08 - not used by any theme. * uwe_prop - proportional is a slightly improved version of that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18381 a1c6a512-1295-4272-9138-f99709370657
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)