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