mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
12 lines
363 B
Makefile
12 lines
363 B
Makefile
.PATH: ${SRCTOP}/sys/net ${SRCTOP}/sys/netipsec
|
|
|
|
KMOD= ipsec
|
|
SRCS= if_ipsec.c ipsec.c ipsec_input.c ipsec_mbuf.c \
|
|
ipsec_mod.c ipsec_offload.c ipsec_output.c \
|
|
xform_ah.c xform_esp.c xform_ipcomp.c \
|
|
opt_inet.h opt_inet6.h opt_ipsec.h opt_kern_tls.h opt_sctp.h
|
|
.if "${MK_INET}" != "no" || "${MK_INET6}" != "no"
|
|
SRCS+= udpencap.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|