The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/security/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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_YAMA)          += yama
   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_SELINUX)          += selinux/built-in.o
   21 obj-$(CONFIG_SECURITY_SMACK)            += smack/built-in.o
   22 obj-$(CONFIG_AUDIT)                     += lsm_audit.o
   23 obj-$(CONFIG_SECURITY_TOMOYO)           += tomoyo/built-in.o
   24 obj-$(CONFIG_SECURITY_APPARMOR)         += apparmor/built-in.o
   25 obj-$(CONFIG_SECURITY_YAMA)             += yama/built-in.o
   26 obj-$(CONFIG_CGROUP_DEVICE)             += device_cgroup.o
   27 
   28 # Object integrity file lists
   29 subdir-$(CONFIG_INTEGRITY)              += integrity
   30 obj-$(CONFIG_INTEGRITY)                 += integrity/built-in.o

Cache object: 622c2b2e27979968f0fd1203560b0f88


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.