1# 2# $FreeBSD$ 3# 4 5.PATH: ${.CURDIR}/../../../netinet/tcp_stacks 6 7STACKNAME= bbr 8KMOD= tcp_${STACKNAME} 9SRCS= bbr.c sack_filter.c rack_bbr_common.c 10 11SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h 12SRCS+= opt_kern_tls.h 13SRCS+= opt_ratelimit.h 14SRCS+= opt_tcpdebug.h 15 16# 17# Enable full debugging 18# 19#CFLAGS += -g 20 21CFLAGS+= -DMODNAME=${KMOD} 22CFLAGS+= -DSTACKNAME=${STACKNAME} 23 24.include <bsd.kmod.mk> 25