Home | History | Annotate | Line # | Download | only in libwsemul_vt100
      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 
     12 LIB=	rumpdev_wsemul_vt100
     13 COMMENT=Workstation console VT100 emulation
     14 
     15 SRCS+= wsemul_vt100.c
     16 SRCS+= wsemul_vt100_chars.c
     17 SRCS+= wsemul_vt100_keys.c
     18 SRCS+= wsemul_vt100_subr.c
     19 
     20 .include <bsd.lib.mk>
     21 .include <bsd.klinks.mk>
     22