e7fd9688ea
Prepare support to be able to handle font data in loader, consolidate data structures to sys/font.h and update vtfontcvt. vtfontcvt update is about to output set of glyphs in form of C source, the implementation does allow to output compressed or uncompressed font bitmaps. Reviewed by: bcr Differential Revision: https://reviews.freebsd.org/D24189
12 lines
246 B
Makefile
12 lines
246 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= vtfontcvt
|
|
SRCS= vtfontcvt.c lz4.c
|
|
MAN8= vtfontcvt.8
|
|
|
|
# lz4 compression functionality
|
|
.PATH: ${SRCTOP}/sys/cddl/contrib/opensolaris/common/lz4
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/common/lz4
|
|
|
|
.include <bsd.prog.mk>
|