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