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