aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/tcp
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@FreeBSD.org>2017-03-27 18:20:32 +0000
committerMichael Tuexen <tuexen@FreeBSD.org>2017-03-27 18:20:32 +0000
commit4222f9685c59013425ddbc1ee8c474536a56494e (patch)
treece0b5f3631c228757bcf00ab079bbc839b06874d /sys/modules/tcp
parente106234416dc018cb1dc1379d628eeb2872c53c8 (diff)
Notes
Diffstat (limited to 'sys/modules/tcp')
-rw-r--r--sys/modules/tcp/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/sys/modules/tcp/Makefile b/sys/modules/tcp/Makefile
new file mode 100644
index 000000000000..a5ca9034a070
--- /dev/null
+++ b/sys/modules/tcp/Makefile
@@ -0,0 +1,23 @@
+#
+# $FreeBSD$
+#
+
+SYSDIR?=${SRCTOP}/sys
+.include "${SYSDIR}/conf/kern.opts.mk"
+
+SUBDIR= \
+ ${_tcp_fastpath} \
+ ${_tcpmd5} \
+
+.if ${MK_EXTRA_TCP_STACKS} != "no" || defined(ALL_MODULES)
+_tcp_fastpath= fastpath
+.endif
+
+.if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \
+ defined(ALL_MODULES)
+.if ${MK_IPSEC_SUPPORT} != "no"
+_tcpmd5= tcpmd5
+.endif
+.endif
+
+.include <bsd.subdir.mk>