Ed Maste c6e475ff5a allow vt(4) fonts to be built from .bdf files
vtfontcvt(8) can convert both .bdf and .hex inputs to binary vt(4) .fnt
files.

Event:		Berlin Devsummit 2019
Sponsored by:	The FreeBSD Foundation
2019-06-16 12:44:49 +00:00

23 lines
386 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 ${.IMPSRC} ${.TARGET}
FILESDIR= ${SHAREDIR}/vt/fonts
.include <bsd.prog.mk>