aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ipsec
diff options
context:
space:
mode:
Diffstat (limited to 'sys/modules/ipsec')
-rw-r--r--sys/modules/ipsec/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/modules/ipsec/Makefile b/sys/modules/ipsec/Makefile
new file mode 100644
index 000000000000..ed061f317768
--- /dev/null
+++ b/sys/modules/ipsec/Makefile
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netipsec
+
+KMOD= ipsec
+SRCS= if_ipsec.c ipsec.c ipsec_input.c ipsec_mbuf.c ipsec_mod.c \
+ ipsec_output.c xform_ah.c xform_esp.c xform_ipcomp.c \
+ opt_inet.h opt_inet6.h opt_ipsec.h opt_sctp.h
+SRCS.INET= udpencap.c
+
+opt_ipsec.h:
+ @echo "#define IPSEC_SUPPORT 1" > ${.TARGET}
+
+.include <bsd.kmod.mk>