From 8050e0a4299d83d5ba99981e74f6a12b5c4e3dae Mon Sep 17 00:00:00 2001 From: "Stephen J. Kiernan" Date: Sun, 16 Apr 2023 19:16:49 -0400 Subject: [PATCH] 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. --- sys/modules/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)