Home | History | Annotate | Line # | Download | only in libtty
Makefile revision 1.5
      1 #	$NetBSD: Makefile,v 1.5 2015/04/23 14:49:26 pooka Exp $
      2 #
      3 
      4 .include <bsd.init.mk>
      5 
      6 .PATH:  ${.CURDIR}/../../../../kern					\
      7 	${.CURDIR}/../../../../compat/common
      8 
      9 LIB=	rumpkern_tty
     10 
     11 SRCS=	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_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