aboutsummaryrefslogtreecommitdiff
path: root/stand/fonts/Makefile
diff options
context:
space:
mode:
authorAlexander Ziaee <ziaee@FreeBSD.org>2025-04-06 10:49:24 +0000
committerAlexander Ziaee <ziaee@FreeBSD.org>2025-05-06 15:50:28 +0000
commit1ec2c8b2f364cc8294ba06d64a167bca4b1b6bbb (patch)
treedb540c1bcb04ed50de867da05dc2e65196e6cd8b /stand/fonts/Makefile
parentbbffdfef3bf04b2f89027cb20e2019fdc74c4b1b (diff)
Diffstat (limited to 'stand/fonts/Makefile')
-rw-r--r--stand/fonts/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/stand/fonts/Makefile b/stand/fonts/Makefile
index 3ac1b0bac951..4840c07201d6 100644
--- a/stand/fonts/Makefile
+++ b/stand/fonts/Makefile
@@ -1,5 +1,6 @@
.include <bsd.init.mk>
+.PATH: ${SRCTOP}/contrib/spleen
.PATH: ${SRCTOP}/contrib/terminus
FONTS= \
@@ -15,6 +16,7 @@ FONTS= \
12x24.fnt.gz \
14x28.fnt.gz \
16x32.fnt.gz \
+ 32x64.fnt.gz \
FILES= ${FONTS} INDEX.fonts
FILESDIR= /boot/fonts
@@ -45,6 +47,8 @@ CLEANFILES+= ${FONTS} ${FONTS:T:S/${COMPRESS_EXT}//g}
${COMPRESS_CMD} ${.ALLSRC} > ${.TARGET}
16x32.fnt.gz: 16x32.fnt
${COMPRESS_CMD} ${.ALLSRC} > ${.TARGET}
+32x64.fnt.gz: 32x64.fnt
+ ${COMPRESS_CMD} ${.ALLSRC} > ${.TARGET}
6x12.fnt: ter-u12n.bdf ter-u12b.bdf
vtfontcvt -o ${.TARGET} ${.ALLSRC}
@@ -82,4 +86,7 @@ CLEANFILES+= ${FONTS} ${FONTS:T:S/${COMPRESS_EXT}//g}
16x32.fnt: ter-u32n.bdf ter-u32b.bdf
vtfontcvt -o ${.TARGET} ${.ALLSRC}
+32x64.fnt: spleen-32x64.bdf
+ vtfontcvt -o ${.TARGET} ${.ALLSRC}
+
.include <bsd.prog.mk>