https://github.com/torvalds/linux
Raw File
Tip revision: c9eaa447e77efe77b7fa4c953bd62de8297fd6c5 authored by Linus Torvalds on 13 April 2014, 21:18:35 UTC
Linux 3.15-rc1
Tip revision: c9eaa44
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