xref: /freebsd-12.1/sys/modules/ipsec/Makefile (revision 518613e4)
1# $FreeBSD$
2
3.PATH: ${SRCTOP}/sys/net ${SRCTOP}/sys/netipsec
4
5KMOD=	ipsec
6SRCS=	if_ipsec.c ipsec.c ipsec_input.c ipsec_mbuf.c ipsec_mod.c \
7	ipsec_output.c xform_ah.c xform_esp.c xform_ipcomp.c \
8	opt_inet.h opt_inet6.h opt_ipsec.h opt_sctp.h
9SRCS.INET=	udpencap.c
10
11opt_ipsec.h:
12	@echo "#define IPSEC_SUPPORT 1" > ${.TARGET}
13
14.include <bsd.kmod.mk>
15