Home | History | Annotate | Line # | Download | only in rumpnet
Makefile.rumpnet revision 1.13
      1 #	$NetBSD: Makefile.rumpnet,v 1.13 2013/03/15 12:09:59 pooka 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 # sys/kern networking (sockets, mbufs, etc.)
     16 SRCS+=	sys_socket.c uipc_accf.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c	\
     17 	uipc_socket.c uipc_socket2.c uipc_syscalls.c
     18 
     19 # radix trie support
     20 SRCS+=	radix.c
     21 SRCS+=	rtbl.c
     22 
     23 # compat (nothing for now)
     24 SRCS+=	
     25 
     26 # bpf stubs, required for all kernels
     27 SRCS+=	bpf_stub.c
     28 
     29 # automatically in sync src/lib
     30 SHLIB_MAJOR=    0
     31 SHLIB_MINOR=    0
     32 
     33 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpnet/opt
     34 
     35 .include "${RUMPTOP}/Makefile.rump"
     36 
     37 .include <bsd.lib.mk>
     38 .include <bsd.klinks.mk>
     39