Advertisement
PtLSM

security/Makefile

May 17th, 2012
1,130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.03 KB | None | 0 0
  1. #
  2. # Makefile for the kernel security code
  3. #
  4.  
  5. obj-$(CONFIG_KEYS)          += keys/
  6. subdir-$(CONFIG_SECURITY_SELINUX)   += selinux
  7. subdir-$(CONFIG_SECURITY_SMACK)     += smack
  8. subdir-$(CONFIG_SECURITY_TOMOYO)        += tomoyo
  9. subdir-$(CONFIG_SECURITY_APPARMOR)  += apparmor
  10. subdir-$(CONFIG_SECURITY_PTLSM) += ptlsm
  11.  
  12. # always enable default capabilities
  13. obj-y                   += commoncap.o
  14. obj-$(CONFIG_MMU)           += min_addr.o
  15.  
  16. # Object file lists
  17. obj-$(CONFIG_SECURITY)          += security.o capability.o
  18. obj-$(CONFIG_SECURITYFS)        += inode.o
  19. # Must precede capability.o in order to stack properly.
  20. obj-$(CONFIG_SECURITY_PTLSM)    += ptlsm/ptlsm.o
  21. obj-$(CONFIG_SECURITY_SELINUX)      += selinux/built-in.o
  22. obj-$(CONFIG_SECURITY_SMACK)        += smack/built-in.o
  23. obj-$(CONFIG_AUDIT)         += lsm_audit.o
  24. obj-$(CONFIG_SECURITY_TOMOYO)       += tomoyo/built-in.o
  25. obj-$(CONFIG_SECURITY_APPARMOR)     += apparmor/built-in.o
  26. obj-$(CONFIG_CGROUP_DEVICE)     += device_cgroup.o
  27.  
  28. # Object integrity file lists
  29. subdir-$(CONFIG_IMA)            += integrity/ima
  30. obj-$(CONFIG_IMA)           += integrity/ima/built-in.o
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement