4270c007ac
These fonts were taken from the FONTMAN (fpman220.zip) distribution by Horst Schaeffer. They are not intended for serious use. They were chosen to look significanly different to vt200 fonts currently available. Good for demonstrating wscons capability.
22 lines
410 B
Makefile
22 lines
410 B
Makefile
# $NetBSD: Makefile,v 1.5 2003/05/04 00:50:28 gmcgarry Exp $
|
|
|
|
FONTS= vt220l.814 vt220h.814 vt220l.808 vt220h.808 \
|
|
vt220l.816 vt220h.816 vt220l.810 vt220h.810 \
|
|
donna.816 flori.816 orator.816
|
|
|
|
FILES=${FONTS}
|
|
|
|
CLEANFILES= ${FONTS}
|
|
FILESDIR= /usr/share/wscons/fonts
|
|
|
|
realall: ${FONTS}
|
|
|
|
UUDECODE?= uudecode
|
|
|
|
.for i in ${FONTS}
|
|
$i: ${.CURDIR}/$i.uu
|
|
${UUDECODE} ${.CURDIR}/$i.uu
|
|
.endfor
|
|
|
|
.include <bsd.prog.mk>
|