NetBSD/sys/rump/librump/rumpnet/Makefile.rumpnet
matt 4d5d6d9aa5 Add a new AF/PF_ROUTE which is 64-bit clean which makes the routing socket
interface (and its associated sysctls) act identically for both 32 and 64 bit
programs.  The old unclean one remains for backward compatibility.
2011-02-01 01:39:19 +00:00

38 lines
795 B
Makefile

# $NetBSD: Makefile.rumpnet,v 1.11 2011/02/01 01:39:21 matt Exp $
#
.include "${RUMPTOP}/Makefile.rump"
LIB= rumpnet
.PATH: ${RUMPTOP}/librump/rumpnet \
${RUMPTOP}/../kern \
${RUMPTOP}/../net \
${RUMPTOP}/../compat/common
SRCS= net_stub.c netisr.c rump_net.c
SRCS+= rumpnet_if_wrappers.c
# sys/kern networking (sockets, mbufs, etc.)
SRCS+= sys_socket.c uipc_accf.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c \
uipc_socket.c uipc_socket2.c uipc_syscalls.c
# radix trie support
SRCS+= radix.c
# compat (nothing for now)
SRCS+=
# bpf stubs, required for all kernels
SRCS+= bpf_stub.c
# automatically in sync src/lib
SHLIB_MAJOR= 0
SHLIB_MINOR= 0
CPPFLAGS+= -I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpnet/opt
.include <bsd.lib.mk>
.include <bsd.klinks.mk>