mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
New full ISO-8859-1 system font.
Added font loading from dir browser. Changed default font location to /.rockbox/default.fnt. Code-policed font code. Removed old font tools. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2347 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
eb5cc653db
commit
bed3d3f7e0
21 changed files with 3427 additions and 5857 deletions
|
|
@ -63,7 +63,7 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall -mwindows
|
|||
APPCFLAGS = $(DEBUG) $(DEFINES) $(APPINCLUDES) -W -Wall -mwindows
|
||||
|
||||
FIRMSRCS = lcd.c power.c sprintf.c id3.c usb.c \
|
||||
mpeg.c powermgmt.c font.c loadfont.c X5x8.c
|
||||
mpeg.c powermgmt.c font.c sysfont.c
|
||||
|
||||
APPS = main.c tree.c menu.c credits.c main_menu.c icons.c \
|
||||
playlist.c showtext.c wps.c wps-display.c settings.c status.c
|
||||
|
|
@ -187,11 +187,9 @@ $(OBJDIR)/id3.o: $(FIRMWAREDIR)/id3.c
|
|||
$(OBJDIR)/font.o: $(FIRMWAREDIR)/font.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/loadfont.o: $(FIRMWAREDIR)/loadfont.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/X5x8.o: $(FIRMWAREDIR)/X5x8.c
|
||||
$(CC) $(CFLAGS) -c $< -o $@
|
||||
$(OBJDIR)/sysfont.o: $(FIRMWAREDIR)/fonts/clR6x8.bdf
|
||||
$(TOOLSDIR)/convbdf -c -o $(OBJDIR)/sysfont.c $<
|
||||
$(CC) $(APPCFLAGS) -c $(OBJDIR)/sysfont.c -o $@
|
||||
|
||||
$(OBJDIR)/status.o: $(APPDIR)/status.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue