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