Blame view
security/Makefile
835 Bytes
1da177e4c Linux-2.6.12-rc2 |
1 2 3 4 5 6 |
# # Makefile for the kernel security code # obj-$(CONFIG_KEYS) += keys/ subdir-$(CONFIG_SECURITY_SELINUX) += selinux |
e114e4737 Smack: Simplified... |
7 |
subdir-$(CONFIG_SECURITY_SMACK) += smack |
00d7d6f84 Kconfig and Makefile |
8 |
subdir-$(CONFIG_SECURITY_TOMOYO) += tomoyo |
1da177e4c Linux-2.6.12-rc2 |
9 |
|
5915eb538 security: remove ... |
10 |
# always enable default capabilities |
6e1415467 NOMMU: Optimise a... |
11 12 |
obj-y += commoncap.o obj-$(CONFIG_MMU) += min_addr.o |
1da177e4c Linux-2.6.12-rc2 |
13 14 |
# Object file lists |
da31894ed securityfs: do no... |
15 16 |
obj-$(CONFIG_SECURITY) += security.o capability.o obj-$(CONFIG_SECURITYFS) += inode.o |
1da177e4c Linux-2.6.12-rc2 |
17 18 |
# Must precede capability.o in order to stack properly. obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o |
5915eb538 security: remove ... |
19 |
obj-$(CONFIG_SECURITY_SMACK) += smack/built-in.o |
2bf496903 SELinux: Convert ... |
20 |
obj-$(CONFIG_AUDIT) += lsm_audit.o |
42d5aaa2d security: change ... |
21 |
obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo/built-in.o |
08ce5f16e cgroups: implemen... |
22 |
obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o |
3323eec92 integrity: IMA as... |
23 24 25 26 |
# Object integrity file lists subdir-$(CONFIG_IMA) += integrity/ima obj-$(CONFIG_IMA) += integrity/ima/built-in.o |