mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
19 lines
414 B
Makefile
19 lines
414 B
Makefile
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>
|