blob: 2ae9adb62861640416aae68b9f4928f4473768a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Makefile for the kernel security code
#
# if we don't select a security model, use the default capabilities
ifneq ($(CONFIG_SECURITY),y)
obj-y += capability.o
endif
# Object file lists
obj-$(CONFIG_SECURITY) += security.o dummy.o
obj-$(CONFIG_SECURITY_CAPABILITIES) += capability.o
obj-$(CONFIG_SECURITY_ROOTPLUG) += root_plug.o
|