Makefile 896 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
#
# Makefile for the kernel security code
#

obj-$(CONFIG_KEYS)			+= keys/
subdir-$(CONFIG_SECURITY_SELINUX)	+= selinux
7
subdir-$(CONFIG_SECURITY_SMACK)		+= smack
K
Kentaro Takeda 已提交
8
subdir-$(CONFIG_SECURITY_TOMOYO)        += tomoyo
L
Linus Torvalds 已提交
9

M
Miklos Szeredi 已提交
10
# always enable default capabilities
11
obj-y		+= commoncap.o min_addr.o
L
Linus Torvalds 已提交
12 13

# Object file lists
14 15
obj-$(CONFIG_SECURITY)			+= security.o capability.o
obj-$(CONFIG_SECURITYFS)		+= inode.o
L
Linus Torvalds 已提交
16 17
# Must precede capability.o in order to stack properly.
obj-$(CONFIG_SECURITY_SELINUX)		+= selinux/built-in.o
M
Miklos Szeredi 已提交
18
obj-$(CONFIG_SECURITY_SMACK)		+= smack/built-in.o
19 20 21
ifeq ($(CONFIG_AUDIT),y)
obj-$(CONFIG_SECURITY_SMACK)		+= lsm_audit.o
endif
22
obj-$(CONFIG_SECURITY_TOMOYO)		+= tomoyo/built-in.o
M
Miklos Szeredi 已提交
23
obj-$(CONFIG_SECURITY_ROOTPLUG)		+= root_plug.o
24
obj-$(CONFIG_CGROUP_DEVICE)		+= device_cgroup.o
25 26 27 28

# Object integrity file lists
subdir-$(CONFIG_IMA)			+= integrity/ima
obj-$(CONFIG_IMA)			+= integrity/ima/built-in.o