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