Home | History | Annotate | Line # | Download | only in rumpnet
Makefile.rumpnet revision 1.4
      1 #	$NetBSD: Makefile.rumpnet,v 1.4 2009/01/23 19:34:37 pooka Exp $
      2 #
      3 
      4 .include "${RUMPTOP}/Makefile.rump"
      5 
      6 LIB=		rumpnet
      7 
      8 .PATH:	${RUMPTOP}/librump/rumpnet				\
      9 	${RUMPTOP}/../kern ${RUMPTOP}/../lib/libkern		\
     10 	${RUMPTOP}/../net					\
     11 	${RUMPTOP}/../compat/common
     12 
     13 SRCS=	net_stub.c netisr.c rump_net.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 
     22 # src/lib/libkern
     23 SRCS+=	intoa.c
     24 
     25 # compat
     26 SRCS+=	rtsock_50.c
     27 
     28 # automatically in sync src/lib
     29 SHLIB_MAJOR=    0
     30 SHLIB_MINOR=    0
     31 
     32 CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern -I${RUMPTOP}/librump/rumpnet/opt
     33 CPPFLAGS+=	-DMAXUSERS=32
     34 
     35 .include <bsd.lib.mk>
     36 .include <bsd.klinks.mk>
     37