NetBSD/lib/librumpuser/Makefile
pooka 6e4a9f9133 librumpuser is not _KERNEL code and does not belong in sys. Move
the source files from src/sys/rump/librump/rumpuser to src/lib/librumpuser
(from where it is already built).  Even so, keep rumpuser.h in
sys/rump/include for kernel source tree self-containment.
2010-02-26 18:54:20 +00:00

25 lines
439 B
Makefile

# $NetBSD: Makefile,v 1.2 2010/02/26 18:54:20 pooka Exp $
#
WARNS= 4
# rumpuser.h is in sys/rump for inclusion by kernel components
.PATH: ${.CURDIR}/../../sys/rump/include/rump
LIB= rumpuser
LIBDPLIBS+= pthread ${.CURDIR}/../libpthread
SRCS= rumpuser.c rumpuser_net.c
SRCS+= rumpuser_pth.c
SRCS+= rumpuser_dl.c
INCSDIR= /usr/include/rump
INCS= rumpuser.h
MAN= rumpuser.3
CPPFLAGS+= -D_REENTRANT
.include <bsd.lib.mk>