Makefile 559 B

123456789101112131415161718
  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 inode.o
  11. # Must precede capability.o in order to stack properly.
  12. obj-$(CONFIG_SECURITY_SELINUX) += selinux/built-in.o
  13. obj-$(CONFIG_SECURITY_SMACK) += smack/built-in.o
  14. obj-$(CONFIG_SECURITY_ROOTPLUG) += root_plug.o
  15. obj-$(CONFIG_CGROUP_DEVICE) += device_cgroup.o