https://github.com/torvalds/linux
Raw File
Tip revision: a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee authored by Linus Torvalds on 22 June 2014, 05:02:54 UTC
Linux 3.16-rc2
Tip revision: a497c3b
Makefile
#
# Makefile for caching inode integrity data (iint)
#

obj-$(CONFIG_INTEGRITY) += integrity.o
obj-$(CONFIG_INTEGRITY_AUDIT) += integrity_audit.o
obj-$(CONFIG_INTEGRITY_SIGNATURE) += digsig.o
obj-$(CONFIG_INTEGRITY_ASYMMETRIC_KEYS) += digsig_asymmetric.o

integrity-y := iint.o

subdir-$(CONFIG_IMA)			+= ima
obj-$(CONFIG_IMA)			+= ima/
subdir-$(CONFIG_EVM)			+= evm
obj-$(CONFIG_EVM)			+= evm/
back to top