xref: /freebsd/sys/modules/cc/Makefile (revision 12e0d316644a4f80f5f1f78cf07bd93def43b1ca)
1SUBDIR=	cc_newreno \
2	cc_cubic \
3	cc_dctcp \
4	cc_htcp
5
6
7# Do we have the TCP_HHOOK symbol defined? If not, there is no point in
8# building these modules by default.
9# We will default to building these modules if $OPT_GLOBAL does contain
10# the TCP_HHOOK option.
11.if defined(ALL_MODULES) || ${OPT_GLOBAL:UTCP_HHOOK:MTCP_HHOOK} != ""
12SUBDIR+= \
13	cc_cdg \
14	cc_chd \
15	cc_hd \
16	cc_vegas
17.endif
18
19.include <bsd.subdir.mk>
20