Makefile.inc revision 1.16
1# $NetBSD: Makefile.inc,v 1.16 2022/09/20 07:19:14 ozaki-r Exp $ 2# 3 4.PATH: ${.CURDIR}/../../../../netinet 5 6CPPFLAGS+= -DINET 7 8# INET 9SRCS+= in_proto.c igmp.c in.c in_offload.c in_pcb.c ip_carp.c ip_icmp.c\ 10 ip_flow.c ip_input.c ip_reass.c ip_output.c raw_ip.c \ 11 in_cksum.c cpu_in_cksum.c in4_cksum.c ip_encap.c portalgo.c 12 13# ARP 14SRCS+= if_arp.c 15 16# TCP 17SRCS+= tcp_congctl.c tcp_input.c tcp_output.c tcp_sack.c tcp_subr.c \ 18 tcp_syncache.c tcp_timer.c tcp_usrreq.c tcp_vtw.c 19 20# UDP 21SRCS+= udp_usrreq.c 22 23CPPFLAGS+= -DPORTALGO_INET4_DEFAULT=PORTALGO_RANDOM_START 24 25# TCP debugging 26#SRCS+= tcp_debug.c 27#CPPFLAGS+= -DTCP_DEBUG 28 29# IPSEC 30SRCS+= ip_ecn.c 31CPPFLAGS+= -DIPSEC 32# To write rump-specific wrappers 33CPPFLAGS.in_proto.c+= -DIPSEC_RUMPKERNEL 34