summaryrefslogtreecommitdiff
path: root/sys/modules/cc/Makefile
blob: 2ec1c49621c11c8629c73df6df17ead7b239245d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SUBDIR=	cc_newreno \
	cc_cubic \
	cc_dctcp \
	cc_htcp


# Do we have the TCP_HHOOK symbol defined? If not, there is no point in
# building these modules by default.
# We will default to building these modules if $OPT_GLOBAL does contain
# the TCP_HHOOK option.
.if defined(ALL_MODULES) || ${OPT_GLOBAL:UTCP_HHOOK:MTCP_HHOOK} != ""
SUBDIR+= \
	cc_cdg \
	cc_chd \
	cc_hd \
	cc_vegas
.endif

.include <bsd.subdir.mk>