Makefile 588 B

12345678910111213141516171819
  1. #
  2. # Makefile for the kernel security code
  3. #
  4. obj-$(CONFIG_KEYS) += keys/
  5. subdir-$(CONFIG_SECURITY_SELINUX) += selinux
  6. subdir-$(CONFIG_SECURITY_SMACK) += smack
  7. # always enable default capabilities
  8. obj-y += commoncap.o
  9. # Object file lists
  10. obj-$(CONFIG_SECURITY) += security.o capability.o
  11. obj-$(CONFIG_SECURITYFS) += inode.o
  12. # Must precede capability.o in order to stack properly.
  13. obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o
  14. obj-$(CONFIG_SECURITY_SMACK) += smack/built-in.o
  15. obj-$(CONFIG_SECURITY_ROOTPLUG) += root_plug.o
  16. obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o