mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
Greg Haerr's new loadable font. No more #ifdef font-style, removed old
propfont and loadable font code. New font file format. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2269 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5ed78ea80c
commit
93b231c693
29 changed files with 5528 additions and 1120 deletions
|
|
@ -76,13 +76,8 @@ CFLAGS = $(DEBUG) $(DEFINES) $(INCLUDES) -W -Wall
|
|||
|
||||
APPCFLAGS = $(DEBUG) $(DEFINES) -DAPPSVERSION=\"$(VERSION)\" $(APPINCLUDES) -W -Wall
|
||||
|
||||
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c powermgmt.c
|
||||
|
||||
ifeq (LOADABLE_FONTS,$(findstring LOADABLE_FONTS, $(DEFINES)))
|
||||
FIRMSRCS += unicode.c ajf.c panic.c
|
||||
EXTRA_TARGETS = $(OBJDIR)/archos/system.ajf
|
||||
SYSTEM_FONT = $(FIRMWAREDIR)/fonts/alt6x10.bdf
|
||||
endif
|
||||
FIRMSRCS = chartables.c lcd.c sprintf.c id3.c debug.c usb.c mpeg.c power.c\
|
||||
powermgmt.c font.c X5x8.c loadfont.c panic.c
|
||||
|
||||
APPS = main.c tree.c menu.c credits.c main_menu.c\
|
||||
playlist.c showtext.c wps.c wps-display.c settings.c status.c icons.c
|
||||
|
|
@ -110,9 +105,6 @@ clean:
|
|||
$(RM) $(OBJS) *~ core $(TARGET) $(CLIENTS)
|
||||
$(RM) -r $(DEPS)
|
||||
|
||||
$(OBJDIR)/archos/system.ajf: $(TOOLSDIR)/bdf2ajf $(SYSTEM_FONT)
|
||||
$(TOOLSDIR)/bdf2ajf -f $(SYSTEM_FONT) -o $(OBJDIR)/archos/system.ajf
|
||||
|
||||
distclean: clean
|
||||
$(RM) config.cache
|
||||
|
||||
|
|
@ -227,6 +219,24 @@ $(OBJDIR)/lcd.o: $(DRIVERS)/lcd.c
|
|||
$(OBJDIR)/chartables.o: $(FIRMWAREDIR)/chartables.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/X5x8.o: $(FIRMWAREDIR)/X5x8.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/X6x9.o: $(FIRMWAREDIR)/X6x9.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/timR08.o: $(FIRMWAREDIR)/timR08.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/courB08.o: $(FIRMWAREDIR)/courB08.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/font.o: $(FIRMWAREDIR)/font.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/loadfont.o: $(FIRMWAREDIR)/loadfont.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
$(OBJDIR)/settings.o: $(APPDIR)/settings.c
|
||||
$(CC) $(APPCFLAGS) -c $< -o $@
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue