aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen J. Kiernan <stevek@FreeBSD.org>2023-04-16 23:16:49 +0000
committerStephen J. Kiernan <stevek@FreeBSD.org>2023-04-16 23:18:55 +0000
commit8050e0a4299d83d5ba99981e74f6a12b5c4e3dae (patch)
tree4b376586ac57193e4218a343aa6ad41e9995e313
parent6ae8d57652faf3bb8532ed627676c65eecd94a31 (diff)
downloadsrc-8050e0a4299d83d5ba99981e74f6a12b5c4e3dae.tar.gz
src-8050e0a4299d83d5ba99981e74f6a12b5c4e3dae.zip
sys/modules/Makefile: add MAC/veriexec modules into the build
Build the MAC/veriexec module and the SHA2, SHA256, SHA384, and SHA512 fingerprint modules. Obtained from: Juniper Networks, Inc.
-rw-r--r--sys/modules/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index b59559f4c621..71e0be4cce2c 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -235,6 +235,11 @@ SUBDIR= \
${_mac_seeotheruids} \
${_mac_stub} \
${_mac_test} \
+ ${_mac_veriexec} \
+ ${_mac_veriexec_sha1} \
+ ${_mac_veriexec_sha256} \
+ ${_mac_veriexec_sha384} \
+ ${_mac_veriexec_sha512} \
${_malo} \
${_mana} \
md \
@@ -583,6 +588,11 @@ _mac_priority= mac_priority
_mac_seeotheruids= mac_seeotheruids
_mac_stub= mac_stub
_mac_test= mac_test
+_mac_veriexec= mac_veriexec
+_mac_veriexec_sha1= mac_veriexec_sha1
+_mac_veriexec_sha256= mac_veriexec_sha256
+_mac_veriexec_sha384= mac_veriexec_sha384
+_mac_veriexec_sha512= mac_veriexec_sha512
.endif
.if ${MK_NETGRAPH} != "no" || defined(ALL_MODULES)