freebsd-dev/sys/modules/tcp/Makefile
Michael Tuexen 4222f9685c Tweak the Makefiles a bit to allow using "tcp" in MODULES_OVERRIDE
to build the tcp modules.

Sponsored by:	Netflix, Inc.
2017-03-27 18:20:32 +00:00

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>