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