| xj | b04a402 | 2021-11-25 15:01:52 +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/ | ||||