4222f9685c
to build the tcp modules. Sponsored by: Netflix, Inc.
24 lines
394 B
Makefile
24 lines
394 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
SYSDIR?=${SRCTOP}/sys
|
|
.include "${SYSDIR}/conf/kern.opts.mk"
|
|
|
|
SUBDIR= \
|
|
${_tcp_fastpath} \
|
|
${_tcpmd5} \
|
|
|
|
.if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES)
|
|
_tcp_fastpath= fastpath
|
|
.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>
|