diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-09-02 00:09:19 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-09-02 00:09:19 +0000 |
| commit | a4124e00b9b4a206d1b375468c4ff7efd0cb7908 (patch) | |
| tree | 47b90b1c4df5df26edc9032aa0d00286f8a6ccf4 /firmware/Makefile | |
| parent | c9e31fba4dce2763f7beb0471e3186fdffeb5ae9 (diff) | |
| download | rockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.zip rockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.tar.gz rockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.tar.bz2 rockbox-a4124e00b9b4a206d1b375468c4ff7efd0cb7908.tar.xz | |
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/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index d09676f..e9fe32d 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -43,10 +43,10 @@ $(OBJDIR)/thread.o: thread.c export/thread.h $(call PRINTS,CC thread.c)$(CC) -c -O -fomit-frame-pointer $(CFLAGS) $< -o $@ $(BUILDDIR)/sysfont.h: ../fonts/rockbox_default.bdf - $(call PRINTS,Create sysfont.h)$(TOOLSDIR)/convbdf -h -o $@ $< + $(call PRINTS,Create sysfont.h)$(TOOLSDIR)/convbdf -l 255 -h -o $@ $< $(OBJDIR)/sysfont.o: ../fonts/rockbox_default.bdf - $(call PRINTS,CONVBDF)$(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $< + $(call PRINTS,CONVBDF)$(TOOLSDIR)/convbdf -l 255 -c -o $(OBJDIR)/sysfont.c $< $(call PRINTS,CC sysfont.c)$(CC) $(CFLAGS) -c $(OBJDIR)/sysfont.c -o $@ -include $(DEPFILE) |