1 1.15.4.4 skrll # $NetBSD: Makefile.rumpnet,v 1.15.4.4 2017/02/05 13:41:00 skrll Exp $ 2 1.1 pooka # 3 1.1 pooka 4 1.1 pooka LIB= rumpnet 5 1.15.4.3 skrll 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.15.4.1 skrll ${RUMPTOP}/../netatalk \ 11 1.15.4.1 skrll ${RUMPTOP}/../netinet \ 12 1.15.4.1 skrll ${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.15.4.4 skrll SRCS+= pktqueue.c pfil.c 27 1.15 rmind 28 1.15.4.1 skrll # formatters 29 1.15.4.1 skrll SRCS+= at_print.c dl_print.c in_print.c in6_print.c 30 1.15.4.1 skrll 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.15.4.2 skrll 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.15.4.4 skrll # workqueue-based pr_input (required by inet and inet6) 42 1.15.4.4 skrll SRCS+= wqinput.c 43 1.15.4.4 skrll 44 1.15.4.2 skrll 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