]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/tcp/Makefile
MFV 337214:
[FreeBSD/FreeBSD.git] / sys / modules / tcp / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 SYSDIR?=${SRCTOP}/sys
6 .include "${SYSDIR}/conf/kern.opts.mk"
7
8 SUBDIR= \
9         ${_tcp_rack} \
10         ${_tcpmd5} \
11
12 .if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES)
13 _tcp_rack=      rack
14 .endif
15
16 .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
17         defined(ALL_MODULES)
18 .if ${MK_IPSEC_SUPPORT} != "no"
19 _tcpmd5=        tcpmd5
20 .endif
21 .endif
22
23 .include <bsd.subdir.mk>