]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/tcp/Makefile
MFV r361280:
[FreeBSD/FreeBSD.git] / sys / modules / tcp / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 SYSDIR?=${SRCTOP}/sys
6 .include "${SYSDIR}/conf/kern.opts.mk"
7
8 SUBDIR= \
9         ${_tcp_bbr} \
10         ${_tcp_rack} \
11         ${_tcpmd5} \
12
13 .if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES)
14 _tcp_bbr=       bbr
15 _tcp_rack=      rack
16 .endif
17
18 .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
19         defined(ALL_MODULES)
20 .if ${MK_IPSEC_SUPPORT} != "no"
21 _tcpmd5=        tcpmd5
22 .endif
23 .endif
24
25 .include <bsd.subdir.mk>