Home | History | Annotate | Line # | Download | only in rumpnet
Makefile.rumpnet revision 1.13.10.1
      1 #	$NetBSD: Makefile.rumpnet,v 1.13.10.1 2014/08/10 06:56:51 tls Exp $
      2 #
      3 
      4 LIB=		rumpnet
      5 
      6 .PATH:	${RUMPTOP}/librump/rumpnet				\
      7 	${RUMPTOP}/../kern					\
      8 	${RUMPTOP}/../net					\
      9 	${RUMPTOP}/../compat/common
     10 
     11 SRCS=	net_stub.c netisr.c rump_net.c
     12 
     13 SRCS+=	rumpnet_if_wrappers.c
     14 
     15 SRCS+=	rumpnet_syscalls.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 # sys/net
     22 SRCS+=	pktqueue.c
     23 
     24 # radix trie support
     25 SRCS+=	radix.c
     26 SRCS+=	rtbl.c
     27 
     28 # compat (nothing for now)
     29 SRCS+=	
     30 
     31 # bpf stubs, required for all kernels
     32 SRCS+=	bpf_stub.c
     33 
     34 # automatically in sync src/lib
     35 SHLIB_MAJOR=    0
     36 SHLIB_MINOR=    0
     37 
     38 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpnet/opt
     39 
     40 .include "${RUMPTOP}/Makefile.rump"
     41 
     42 .include <bsd.lib.mk>
     43 .include <bsd.klinks.mk>
     44