Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for the kernel security code |
| 3 | # |
| 4 | |
| 5 | obj-$(CONFIG_KEYS) += keys/ |
| 6 | subdir-$(CONFIG_SECURITY_SELINUX) += selinux |
Casey Schaufler | e114e47 | 2008-02-04 22:29:50 -0800 | [diff] [blame] | 7 | subdir-$(CONFIG_SECURITY_SMACK) += smack |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | |
| 9 | # if we don't select a security model, use the default capabilities |
| 10 | ifneq ($(CONFIG_SECURITY),y) |
| 11 | obj-y += commoncap.o |
| 12 | endif |
| 13 | |
| 14 | # Object file lists |
Greg KH | b67dbf9 | 2005-07-07 14:37:53 -0700 | [diff] [blame] | 15 | obj-$(CONFIG_SECURITY) += security.o dummy.o inode.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | # Must precede capability.o in order to stack properly. |
| 17 | obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o |
Casey Schaufler | e114e47 | 2008-02-04 22:29:50 -0800 | [diff] [blame] | 18 | obj-$(CONFIG_SECURITY_SMACK) += commoncap.o smack/built-in.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | obj-$(CONFIG_SECURITY_CAPABILITIES) += commoncap.o capability.o |
| 20 | obj-$(CONFIG_SECURITY_ROOTPLUG) += commoncap.o root_plug.o |
Serge E. Hallyn | 08ce5f1 | 2008-04-29 01:00:10 -0700 | [diff] [blame] | 21 | obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o |