9edd6d4ee9
This enables Rockbox to render anti-aliased fonts using an alpha blending method. The input font bitmaps are 4bit, i.e. 4x larger, but the metadata size stays the same. A tool, convttf, for converting ttf fonts directly to the Rockbox fnt format is provided. It has a useful help output, but the parameter that works best is -c1 or -c2 (2 for larger font sizes). Flyspray: FS#8961 Author: Initial work by Jonas Hurrelmann, further work by Fred Bauer, Andrew Mahone, Teruaki Kawashima and myself. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29523 a1c6a512-1295-4272-9138-f99709370657
44 lines
1.9 KiB
Makefile
44 lines
1.9 KiB
Makefile
# __________ __ ___.
|
|
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
# \/ \/ \/ \/ \/
|
|
# $Id$
|
|
#
|
|
|
|
TOOLSCFLAGS := -O -g -W -Wall -Wshadow -pedantic -I$(ROOTDIR)/tools
|
|
|
|
$(TOOLSDIR)/scramble: $(TOOLSDIR)/scramble.c $(TOOLSDIR)/iriver.c \
|
|
$(TOOLSDIR)/mi4.c $(TOOLSDIR)/gigabeat.c \
|
|
$(TOOLSDIR)/gigabeats.c $(TOOLSDIR)/telechips.c \
|
|
$(TOOLSDIR)/iaudio_bl_flash.c \
|
|
$(TOOLSDIR)/creative.c $(TOOLSDIR)/hmac-sha1.c
|
|
$(TOOLSDIR)/rdf2binary: $(TOOLSDIR)/rdf2binary.c
|
|
$(TOOLSDIR)/convbdf: $(TOOLSDIR)/convbdf.c
|
|
$(TOOLSDIR)/codepages: $(TOOLSDIR)/codepages.c $(TOOLSDIR)/codepage_tables.c
|
|
$(TOOLSDIR)/mkboot: $(TOOLSDIR)/mkboot.c
|
|
$(TOOLSDIR)/wavtrim: $(TOOLSDIR)/wavtrim.c
|
|
$(TOOLSDIR)/voicefont: $(TOOLSDIR)/voicefont.c
|
|
|
|
$(TOOLSDIR)/iaudio_bl_flash.c $(TOOLSDIR)/iaudio_bl_flash.h: $(TOOLSDIR)/iaudio_bl_flash.bmp $(TOOLSDIR)/bmp2rb
|
|
$(call PRINTS,BMP2RB $(@F))
|
|
$(SILENT)$(TOOLSDIR)/bmp2rb -f 7 -h $(TOOLSDIR) $< >$(TOOLSDIR)/iaudio_bl_flash.c
|
|
|
|
$(TOOLSDIR)/bmp2rb: $(TOOLSDIR)/bmp2rb.c
|
|
$(call PRINTS,CC $(@F))
|
|
$(SILENT)$(HOSTCC) -DAPPLICATION_NAME=\"$@\" $(TOOLSCFLAGS) $+ -o $@
|
|
|
|
$(TOOLSDIR)/uclpack: $(TOOLSDIR)/ucl/uclpack.c $(wildcard $(TOOLSDIR)/ucl/src/*.c)
|
|
$(call PRINTS,CC $(@F))$(HOSTCC) $(TOOLSCFLAGS) -I$(TOOLSDIR)/ucl \
|
|
-I$(TOOLSDIR)/ucl/include -o $@ $^
|
|
|
|
$(TOOLSDIR)/convttf: $(TOOLSDIR)/convttf.c
|
|
$(call PRINTS,CC $(@F))
|
|
$(SILENT)$(HOSTCC) $(TOOLSFLAGS) -lm -O2 -Wall -g $+ -o $@ \
|
|
`freetype-config --libs` `freetype-config --cflags`
|
|
|
|
# implicit rule for simple tools
|
|
$(TOOLSDIR)/%: $(TOOLSDIR)/%.c
|
|
$(call PRINTS,CC $(subst $(ROOTDIR)/,,$@))
|
|
$(SILENT)$(HOSTCC) $(TOOLSCFLAGS) -o $@ $^
|