Home | History | Annotate | Line # | Download | only in rumpnet
Makefile.rumpnet revision 1.19.2.1
      1  1.19.2.1  pgoyette #	$NetBSD: Makefile.rumpnet,v 1.19.2.1 2017/03/20 06:57:52 pgoyette Exp $
      2       1.1     pooka #
      3       1.1     pooka 
      4       1.1     pooka LIB=		rumpnet
      5      1.19     pooka COMMENT=	Rump kernel networking faction
      6       1.1     pooka 
      7       1.1     pooka .PATH:	${RUMPTOP}/librump/rumpnet				\
      8       1.5     pooka 	${RUMPTOP}/../kern					\
      9       1.4     pooka 	${RUMPTOP}/../net					\
     10      1.17  christos 	${RUMPTOP}/../netatalk					\
     11      1.17  christos 	${RUMPTOP}/../netinet					\
     12      1.17  christos 	${RUMPTOP}/../netinet6					\
     13       1.4     pooka 	${RUMPTOP}/../compat/common
     14       1.1     pooka 
     15       1.9     pooka SRCS=	net_stub.c netisr.c rump_net.c
     16       1.1     pooka 
     17       1.8     pooka SRCS+=	rumpnet_if_wrappers.c
     18       1.8     pooka 
     19      1.14     pooka SRCS+=	rumpnet_syscalls.c
     20      1.14     pooka 
     21       1.1     pooka # sys/kern networking (sockets, mbufs, etc.)
     22       1.1     pooka SRCS+=	sys_socket.c uipc_accf.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c	\
     23       1.1     pooka 	uipc_socket.c uipc_socket2.c uipc_syscalls.c
     24       1.1     pooka 
     25      1.15     rmind # sys/net
     26  1.19.2.1  pgoyette SRCS+=	pktqueue.c pfil.c
     27      1.15     rmind 
     28      1.17  christos # formatters
     29      1.17  christos SRCS+= at_print.c dl_print.c in_print.c in6_print.c
     30      1.17  christos 
     31       1.3     pooka # radix trie support
     32       1.2     pooka SRCS+=	radix.c
     33      1.12    dyoung SRCS+=	rtbl.c
     34       1.2     pooka 
     35      1.11      matt # compat (nothing for now)
     36      1.11      matt SRCS+=	
     37       1.4     pooka 
     38      1.10     pooka # bpf stubs, required for all kernels
     39      1.10     pooka SRCS+=	bpf_stub.c
     40      1.10     pooka 
     41  1.19.2.1  pgoyette # workqueue-based pr_input (required by inet and inet6)
     42  1.19.2.1  pgoyette SRCS+=	wqinput.c
     43  1.19.2.1  pgoyette 
     44      1.18     pooka CPPFLAGS+=	-I${RUMPTOP}/librump/rumpkern
     45       1.1     pooka 
     46      1.13     pooka .include "${RUMPTOP}/Makefile.rump"
     47      1.13     pooka 
     48       1.1     pooka .include <bsd.lib.mk>
     49       1.1     pooka .include <bsd.klinks.mk>
     50