opnsense-src/share/vt/fonts/Makefile
Toomas Soome e7fd9688ea Move font related data structured to sys/font.c and update vtfontcvt
Prepare support to be able to handle font data in loader, consolidate
data structures to sys/font.h and update vtfontcvt.

vtfontcvt update is about to output set of glyphs in form of C source,
the implementation does allow to output compressed or uncompressed font
bitmaps.

Reviewed by:	bcr
Differential Revision:	https://reviews.freebsd.org/D24189
2020-06-14 06:58:58 +00:00

22 lines
389 B
Makefile

# $FreeBSD$
FONTS= gallant.fnt \
terminus-b32.fnt \
tom-thumb.fnt \
vgarom-8x8.fnt \
vgarom-8x14.fnt \
vgarom-8x16.fnt \
vgarom-16x32.fnt \
vgarom-thin-8x8.fnt \
vgarom-thin-8x16.fnt
FILES= ${FONTS} INDEX.fonts
CLEANFILES+= ${FONTS}
.SUFFIXES: .bdf .fnt .fnt.uu .hex
.bdf.fnt .hex.fnt:
vtfontcvt -o ${.TARGET} ${.IMPSRC}
FILESDIR= ${SHAREDIR}/vt/fonts
.include <bsd.prog.mk>