svn commit: r349106 - head/share/vt/fonts

Ed Maste emaste at FreeBSD.org
Sun Jun 16 12:44:51 UTC 2019


Author: emaste
Date: Sun Jun 16 12:44:49 2019
New Revision: 349106
URL: https://svnweb.freebsd.org/changeset/base/349106

Log:
  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

Modified:
  head/share/vt/fonts/Makefile

Modified: head/share/vt/fonts/Makefile
==============================================================================
--- head/share/vt/fonts/Makefile	Sun Jun 16 12:26:46 2019	(r349105)
+++ head/share/vt/fonts/Makefile	Sun Jun 16 12:44:49 2019	(r349106)
@@ -13,8 +13,8 @@ FILES=	${FONTS} INDEX.fonts
 
 CLEANFILES+=	${FONTS}
 
-.SUFFIXES: .fnt .fnt.uu .hex
-.hex.fnt:
+.SUFFIXES: .bdf .fnt .fnt.uu .hex
+.bdf.fnt .hex.fnt:
 	vtfontcvt ${.IMPSRC} ${.TARGET}
 
 FILESDIR=	${SHAREDIR}/vt/fonts


More information about the svn-src-head mailing list