NetBSD/lib/librumpclient/Makefile
pooka 97c20c765b Disable string aliasing for rump_syscalls.c. I can't figure out
how to otherwise make the kernel's register_t coreography to work
with the return value here in a MI fashion.
2011-02-22 14:02:54 +00:00

23 lines
446 B
Makefile

# $NetBSD: Makefile,v 1.4 2011/02/22 14:02:54 pooka Exp $
#
.PATH: ${.CURDIR}/../../sys/rump/librump/rumpkern
NOLINT= # syscalls are evil
LIB= rumpclient
USE_SHLIBDIR= yes
MAN= rumpclient.3
.include <bsd.own.mk>
INCS= rumpclient.h
INCSDIR= /usr/include/rump
CPPFLAGS+= -DRUMP_CLIENT -I${.CURDIR} -I${.CURDIR}/../librumpuser
SRCS= rumpclient.c
SRCS+= rump_syscalls.c
COPTS.rump_syscalls.c+= -fno-strict-aliasing
.include <bsd.lib.mk>