Home | History | Annotate | Line # | Download | only in librumpclient
Makefile revision 1.4
      1 #	$NetBSD: Makefile,v 1.4 2011/02/22 14:02:54 pooka Exp $
      2 #
      3 
      4 .PATH:	${.CURDIR}/../../sys/rump/librump/rumpkern
      5 NOLINT= 	# syscalls are evil
      6 
      7 LIB=		rumpclient
      8 USE_SHLIBDIR=	yes
      9 MAN=		rumpclient.3
     10 
     11 .include <bsd.own.mk>
     12 
     13 INCS=		rumpclient.h
     14 INCSDIR=	/usr/include/rump
     15 
     16 CPPFLAGS+=	-DRUMP_CLIENT -I${.CURDIR} -I${.CURDIR}/../librumpuser
     17 SRCS=		rumpclient.c
     18 SRCS+=		rump_syscalls.c
     19 
     20 COPTS.rump_syscalls.c+= -fno-strict-aliasing
     21 
     22 .include <bsd.lib.mk>
     23