xref: /kernel/linux/linux-6.6/security/Makefile
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-6.6/security/
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the kernel security code
4#
5
6obj-$(CONFIG_KEYS)			+= keys/
7subdir-$(CONFIG_SECURITY_CONTAINER_ESCAPE_DETECTION) += container_escape_detection
8
9# always enable default capabilities
10obj-y					+= commoncap.o
11obj-$(CONFIG_MMU)			+= min_addr.o
12
13# Object file lists
14obj-$(CONFIG_SECURITY)			+= security.o
15obj-$(CONFIG_SECURITYFS)		+= inode.o
16obj-$(CONFIG_SECURITY_SELINUX)		+= selinux/
17obj-$(CONFIG_SECURITY_SMACK)		+= smack/
18obj-$(CONFIG_SECURITY)			+= lsm_audit.o
19obj-$(CONFIG_SECURITY_TOMOYO)		+= tomoyo/
20obj-$(CONFIG_SECURITY_APPARMOR)		+= apparmor/
21obj-$(CONFIG_SECURITY_YAMA)		+= yama/
22obj-$(CONFIG_SECURITY_LOADPIN)		+= loadpin/
23obj-$(CONFIG_SECURITY_SAFESETID)       += safesetid/
24obj-$(CONFIG_SECURITY_LOCKDOWN_LSM)	+= lockdown/
25obj-$(CONFIG_CGROUPS)			+= device_cgroup.o
26obj-$(CONFIG_BPF_LSM)			+= bpf/
27obj-$(CONFIG_SECURITY_XPM)		+= xpm/
28obj-$(CONFIG_SECURITY_LANDLOCK)		+= landlock/
29obj-$(CONFIG_SECURITY_CONTAINER_ESCAPE_DETECTION) += container_escape_detection/
30
31# Object integrity file lists
32obj-$(CONFIG_INTEGRITY)			+= integrity/
33

Indexes created Thu Nov 07 10:32:03 CST 2024