mirror of
https://github.com/opnsense/src.git
synced 2026-03-02 21:31:02 -05:00
22 lines
366 B
Makefile
22 lines
366 B
Makefile
#
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../../netinet/tcp_stacks
|
|
|
|
STACKNAME= rack
|
|
KMOD= tcp_${STACKNAME}
|
|
SRCS= rack.c sack_filter.c rack_bbr_common.c tailq_hash.c
|
|
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ipsec.h
|
|
SRCS+= opt_kern_tls.h
|
|
SRCS+= opt_ratelimit.h
|
|
|
|
#
|
|
# Enable full debugging
|
|
#
|
|
#CFLAGS += -g
|
|
|
|
CFLAGS+= -DMODNAME=${KMOD}
|
|
CFLAGS+= -DSTACKNAME=${STACKNAME}
|
|
|
|
.include <bsd.kmod.mk>
|