NetBSD/lib/librumpuser/Makefile
pooka e3425032cb Move the rumpuser_net set of hypercalls to be a private to the sockin
component.  This cleans up the generic hypercall interfaces from ones
specific to only one component.  They should always have been private,
but the infrastructure to "make it so" didn't exist earlier.

no functional change
2013-03-18 13:14:10 +00:00

28 lines
557 B
Makefile

# $NetBSD: Makefile,v 1.9 2013/03/18 13:14:10 pooka Exp $
#
WARNS?= 5
# rumpuser.h is in sys/rump for inclusion by kernel components
.PATH: ${.CURDIR}/../../sys/rump/include/rump
LIB= rumpuser
LIBDPLIBS+= pthread ${.CURDIR}/../libpthread
CPPFLAGS+= -DLIBRUMPUSER
#CPPFLAGS+= -D_DIAGNOSTIC
SRCS= rumpuser.c
SRCS+= rumpuser_pth.c
SRCS+= rumpuser_dl.c rumpuser_sp.c rumpuser_daemonize.c
SRCS+= rumpuser_component.c
INCSDIR= /usr/include/rump
INCS= rumpuser.h rumpuser_component.h
MAN= rumpuser.3
CPPFLAGS+= -D_REENTRANT
.include <bsd.lib.mk>