Module Name: src Committed By: uwe Date: Tue May 3 14:11:59 UTC 2022
Added Files: src/sys/rump/dev/lib/libwsemul_vt100: Makefile Log Message: libwsemul_vt100: Rumpified wscons vt100 emulator (wsvt25). This library provides wscons vt100 emulation (aka TERM=wsvt25). This is internal module, not a device, so there's no RUMP_COMPONENT. The public interface provided by this module is wsemul_vt100_ops and it needs the user to provide (in rump namespace) wsdisplay_emulinput and wsdisplay_emulbell, provided in the real kernel by wsdisplay. This subdirectory is not hooked into the build. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/sys/rump/dev/lib/libwsemul_vt100/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Added files: Index: src/sys/rump/dev/lib/libwsemul_vt100/Makefile diff -u /dev/null src/sys/rump/dev/lib/libwsemul_vt100/Makefile:1.1 --- /dev/null Tue May 3 14:11:59 2022 +++ src/sys/rump/dev/lib/libwsemul_vt100/Makefile Tue May 3 14:11:59 2022 @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2022/05/03 14:11:59 uwe Exp $ +# + +# This library provides wscons vt100 emulation (aka TERM=wsvt25). +# This is internal module, not a device, so there's no RUMP_COMPONENT. +# The public interface provided by this module is wsemul_vt100_ops and +# it needs the user to provide (in rump namespace) wsdisplay_emulinput +# and wsdisplay_emulbell, provided in the real kernel by wsdisplay. + +.PATH: ${.CURDIR}/../../../../dev/wscons + +LIB= rumpdev_wsemul_vt100 +COMMENT=Workstation console VT100 emulation + +SRCS+= wsemul_vt100.c +SRCS+= wsemul_vt100_chars.c +SRCS+= wsemul_vt100_keys.c +SRCS+= wsemul_vt100_subr.c + +.include <bsd.lib.mk> +.include <bsd.klinks.mk>