diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-09-02 22:31:11 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-09-02 22:31:11 +0000 |
commit | f2c7a6940381e8efcc1d573e833eb2a1b89231cc (patch) | |
tree | 505fccfeb485c30188450c6e963bd99c2b715b4d /firmware | |
parent | e278b4fddba62c5448e470146945480aaa358f64 (diff) |
Font cleanup step 3 - The Big Shuffle: Renamed all fonts to a consistent naming scheme that allows easy selection of alternatives based on size, as discussed on IRC. Adjusted themes in SVN and Makefile for the sysfont. ** Attention **: Clean up your /.rockbox/fonts folder before installing the new release, and then install a new font pack as well. Adjust font names in your custom .cfg files. A reference table can be found in fonts/README.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18388 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index e9fe32dba5..072d7d54e0 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -42,10 +42,10 @@ clean: $(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 +$(BUILDDIR)/sysfont.h: ../fonts/08-Schumacher-Clean.bdf $(call PRINTS,Create sysfont.h)$(TOOLSDIR)/convbdf -l 255 -h -o $@ $< -$(OBJDIR)/sysfont.o: ../fonts/rockbox_default.bdf +$(OBJDIR)/sysfont.o: ../fonts/08-Schumacher-Clean.bdf $(call PRINTS,CONVBDF)$(TOOLSDIR)/convbdf -l 255 -c -o $(OBJDIR)/sysfont.c $< $(call PRINTS,CC sysfont.c)$(CC) $(CFLAGS) -c $(OBJDIR)/sysfont.c -o $@ |