xref: /netbsd-src/sys/rump/dev/lib/libwsemul_vt100/Makefile (revision 4ce86c6fbd28531d9413a37a35bf855c53f17ad6)
1#	$NetBSD: Makefile,v 1.1 2022/05/03 14:11:59 uwe Exp $
2#
3
4# This library provides wscons vt100 emulation (aka TERM=wsvt25).
5# This is internal module, not a device, so there's no RUMP_COMPONENT.
6# The public interface provided by this module is wsemul_vt100_ops and
7# it needs the user to provide (in rump namespace) wsdisplay_emulinput
8# and wsdisplay_emulbell, provided in the real kernel by wsdisplay.
9
10.PATH:	${.CURDIR}/../../../../dev/wscons
11
12LIB=	rumpdev_wsemul_vt100
13COMMENT=Workstation console VT100 emulation
14
15SRCS+= wsemul_vt100.c
16SRCS+= wsemul_vt100_chars.c
17SRCS+= wsemul_vt100_keys.c
18SRCS+= wsemul_vt100_subr.c
19
20.include <bsd.lib.mk>
21.include <bsd.klinks.mk>
22