Home | History | Annotate | Line # | Download | only in librumpclient
Makefile revision 1.6
      1 #	$NetBSD: Makefile,v 1.6 2011/03/08 18:30:24 pooka Exp $
      2 #
      3 
      4 .PATH:	${.CURDIR}/../../sys/rump/librump/rumpkern
      5 
      6 LIB=		rumpclient
      7 USE_SHLIBDIR=	yes
      8 MAN=		rumpclient.3
      9 
     10 .include <bsd.own.mk>
     11 
     12 INCS=		rumpclient.h
     13 INCSDIR=	/usr/include/rump
     14 
     15 CPPFLAGS+=	-DRUMP_CLIENT -I${.CURDIR} -I${.CURDIR}/../librumpuser
     16 SRCS=		rumpclient.c
     17 SRCS+=		rump_syscalls.c
     18 
     19 CLEANFILES+=	srcsys
     20 
     21 COPTS.rump_syscalls.c+= -fno-strict-aliasing
     22 
     23 .if !make(obj) && !make(clean) && !make(cleandir)
     24 .BEGIN:
     25 	@rm -f srcsys
     26 	@ln -s ${NETBSDSRCDIR}/sys/sys srcsys
     27 .endif
     28 
     29 .include <bsd.lib.mk>
     30