1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00
freebsd/share/vt/fonts/Makefile
Ed Maste cce0f18281 Build vt(4) fonts during buildworld
vtfontcvt(8) is now built during buildworld, so can be used as a
bootstrap tool to create vt(4) fonts from source .hex or .bdf font
files, rather than having uuencoded binary fonts in the tree.

Sponsored by:	The FreeBSD Foundation
2014-06-12 18:31:32 +00:00

22 lines
340 B
Makefile

# $FreeBSD$
FILES= gallant.fnt \
vgarom-8x8.fnt \
vgarom-8x14.fnt \
vgarom-8x16.fnt \
vgarom-thin-8x8.fnt \
vgarom-thin-8x16.fnt
CLEANFILES+= ${FILES}
.SUFFIXES: .fnt .fnt.uu .hex
.hex.fnt:
vtfontcvt ${.IMPSRC} ${.TARGET}
.fnt.uu.fnt:
uudecode -p < ${.IMPSRC} > ${.TARGET}
FILESDIR= ${SHAREDIR}/vt/fonts
.include <bsd.prog.mk>