2017-03-27 18:20:32 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
SYSDIR?=${SRCTOP}/sys
|
|
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
|
|
|
|
SUBDIR= \
|
2018-06-07 18:18:13 +00:00
|
|
|
${_tcp_rack} \
|
2017-03-27 18:20:32 +00:00
|
|
|
${_tcpmd5} \
|
|
|
|
|
|
|
|
.if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES)
|
2018-06-07 18:18:13 +00:00
|
|
|
_tcp_rack= rack
|
2017-03-27 18:20:32 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
|
|
|
|
defined(ALL_MODULES)
|
|
|
|
.if ${MK_IPSEC_SUPPORT} != "no"
|
|
|
|
_tcpmd5= tcpmd5
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.subdir.mk>
|