rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | # | ||||
3 | # Makefile for caching inode integrity data (iint) | ||||
4 | # | ||||
5 | |||||
6 | obj-$(CONFIG_INTEGRITY) += integrity.o | ||||
7 | |||||
8 | integrity-y := iint.o | ||||
9 | integrity-$(CONFIG_INTEGRITY_AUDIT) += integrity_audit.o | ||||
10 | integrity-$(CONFIG_INTEGRITY_SIGNATURE) += digsig.o | ||||
11 | integrity-$(CONFIG_INTEGRITY_ASYMMETRIC_KEYS) += digsig_asymmetric.o | ||||
12 | |||||
13 | subdir-$(CONFIG_IMA) += ima | ||||
14 | obj-$(CONFIG_IMA) += ima/ | ||||
15 | subdir-$(CONFIG_EVM) += evm | ||||
16 | obj-$(CONFIG_EVM) += evm/ |