mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
14 lines
353 B
Makefile
14 lines
353 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/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>
|