Home | History | Annotate | Line # | Download | only in rumpnet
Makefile.rumpnet revision 1.11
      1 #	$NetBSD: Makefile.rumpnet,v 1.11 2011/02/01 01:39:21 matt Exp $
      2 #
      3 
      4 .include "${RUMPTOP}/Makefile.rump"
      5 
      6 LIB=		rumpnet
      7 
      8 .PATH:	${RUMPTOP}/librump/rumpnet				\
      9 	${RUMPTOP}/../kern					\
     10 	${RUMPTOP}/../net					\
     11 	${RUMPTOP}/../compat/common
     12 
     13 SRCS=	net_stub.c netisr.c rump_net.c
     14 
     15 SRCS+=	rumpnet_if_wrappers.c
     16 
     17 # sys/kern networking (sockets, mbufs, etc.)
     18 SRCS+=	sys_socket.c uipc_accf.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c	\
     19 	uipc_socket.c uipc_socket2.c uipc_syscalls.c
     20 
     21 # radix trie support
     22 SRCS+=	radix.c
     23 
     24 # compat (nothing for now)
     25 SRCS+=	
     26 
     27 # bpf stubs, required for all kernels
     28 SRCS+=	bpf_stub.c
     29 
     30 # automatically in sync src/lib
     31 SHLIB_MAJOR=    0
     32 SHLIB_MINOR=    0
     33 
     34 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpnet/opt
     35 
     36 .include <bsd.lib.mk>
     37 .include <bsd.klinks.mk>
     38