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