Loading...
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the kernel security code
4#
5
6obj-$(CONFIG_KEYS) += keys
7subdir-$(CONFIG_SECURITY_SELINUX) += selinux
8subdir-$(CONFIG_SECURITY_SMACK) += smack
9subdir-$(CONFIG_SECURITY_TOMOYO) += tomoyo
10subdir-$(CONFIG_SECURITY_APPARMOR) += apparmor
11subdir-$(CONFIG_SECURITY_YAMA) += yama
12subdir-$(CONFIG_SECURITY_LOADPIN) += loadpin
13subdir-$(CONFIG_SECURITY_SAFESETID) += safesetid
14subdir-$(CONFIG_SECURITY_LOCKDOWN_LSM) += lockdown
15subdir-$(CONFIG_BPF_LSM) += bpf
16subdir-$(CONFIG_SECURITY_LANDLOCK) += landlock
17
18# always enable default capabilities
19obj-y += commoncap.o
20obj-$(CONFIG_MMU) += min_addr.o
21
22# Object file lists
23obj-$(CONFIG_SECURITY) += security.o
24obj-$(CONFIG_SECURITYFS) += inode.o
25obj-$(CONFIG_SECURITY_SELINUX) += selinux
26obj-$(CONFIG_SECURITY_SMACK) += smack
27obj-$(CONFIG_SECURITY) += lsm_audit.o
28obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo
29obj-$(CONFIG_SECURITY_APPARMOR) += apparmor
30obj-$(CONFIG_SECURITY_YAMA) += yama
31obj-$(CONFIG_SECURITY_LOADPIN) += loadpin
32obj-$(CONFIG_SECURITY_SAFESETID) += safesetid
33obj-$(CONFIG_SECURITY_LOCKDOWN_LSM) += lockdown
34obj-$(CONFIG_CGROUPS) += device_cgroup.o
35obj-$(CONFIG_BPF_LSM) += bpf
36obj-$(CONFIG_SECURITY_LANDLOCK) += landlock
37
38# Object integrity file lists
39subdir-$(CONFIG_INTEGRITY) += integrity
40obj-$(CONFIG_INTEGRITY) += integrity
1# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the kernel security code
4#
5
6obj-$(CONFIG_KEYS) += keys
7
8# always enable default capabilities
9obj-y += commoncap.o
10obj-$(CONFIG_MMU) += min_addr.o
11
12# Object file lists
13obj-$(CONFIG_SECURITY) += security.o
14obj-$(CONFIG_SECURITYFS) += inode.o
15obj-$(CONFIG_SECURITY_SELINUX) += selinux
16obj-$(CONFIG_SECURITY_SMACK) += smack
17obj-$(CONFIG_SECURITY) += lsm_audit.o
18obj-$(CONFIG_SECURITY_TOMOYO) += tomoyo
19obj-$(CONFIG_SECURITY_APPARMOR) += apparmor
20obj-$(CONFIG_SECURITY_YAMA) += yama
21obj-$(CONFIG_SECURITY_LOADPIN) += loadpin
22obj-$(CONFIG_SECURITY_SAFESETID) += safesetid
23obj-$(CONFIG_SECURITY_LOCKDOWN_LSM) += lockdown
24obj-$(CONFIG_CGROUPS) += device_cgroup.o
25obj-$(CONFIG_BPF_LSM) += bpf
26obj-$(CONFIG_SECURITY_LANDLOCK) += landlock
27
28# Object integrity file lists
29obj-$(CONFIG_INTEGRITY) += integrity