mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
cce0f18281
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
22 lines
340 B
Makefile
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>
|