opnsense-src/sys/modules/tcp/bbr/Makefile
2022-07-08 22:04:44 -07:00

24 lines
385 B
Makefile

#
# $FreeBSD$
#
.PATH: ${.CURDIR}/../../../netinet/tcp_stacks
STACKNAME= bbr
KMOD= tcp_${STACKNAME}
SRCS= bbr.c sack_filter.c rack_bbr_common.c
SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h
SRCS+= opt_kern_tls.h
SRCS+= opt_ratelimit.h
SRCS+= opt_tcpdebug.h
#
# Enable full debugging
#
#CFLAGS += -g
CFLAGS+= -DMODNAME=${KMOD}
CFLAGS+= -DSTACKNAME=${STACKNAME}
.include <bsd.kmod.mk>