freebsd-dev/sys/modules/cc/Makefile
Warner Losh 031beb4e23 sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:54:58 -06:00

21 lines
415 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>