2024-09-09 08:52:07 +00:00
|
|
|
#
|
|
|
|
# Makefile for caching inode integrity data (iint)
|
|
|
|
#
|
|
|
|
|
|
|
|
obj-$(CONFIG_INTEGRITY) += integrity.o
|
|
|
|
|
|
|
|
integrity-y := iint.o
|
2024-09-09 08:57:42 +00:00
|
|
|
integrity-$(CONFIG_INTEGRITY_AUDIT) += integrity_audit.o
|
|
|
|
integrity-$(CONFIG_INTEGRITY_SIGNATURE) += digsig.o
|
|
|
|
integrity-$(CONFIG_INTEGRITY_ASYMMETRIC_KEYS) += digsig_asymmetric.o
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
subdir-$(CONFIG_IMA) += ima
|
2024-09-09 08:57:42 +00:00
|
|
|
obj-$(CONFIG_IMA) += ima/
|
2024-09-09 08:52:07 +00:00
|
|
|
subdir-$(CONFIG_EVM) += evm
|
2024-09-09 08:57:42 +00:00
|
|
|
obj-$(CONFIG_EVM) += evm/
|