1# $NetBSD: Makefile,v 1.7 2015/10/19 16:16:37 pooka Exp $ 2# 3 4.PATH: ${.CURDIR}/../../../../kern \ 5 ${.CURDIR}/../../../../compat/common 6 7LIB= rumpkern_tty 8COMMENT=TTY/PTY support 9 10IOCONF= TTY.ioconf 11SRCS= tty.c tty_bsdpty.c tty_conf.c tty_ptm.c tty_pty.c tty_tty.c tty_subr.c 12 13.include <bsd.init.mk> 14 15.if !empty(RUMP_NBCOMPAT:M60) 16SRCS+= tty_60.c 17.endif 18 19SRCS+= tty_component.c 20 21CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpvfs 22 23.include <bsd.lib.mk> 24.include <bsd.klinks.mk> 25