blob: 9349c307504d5d060380d4e5abe6a56899f1b884 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# Makefile for the kernel security code
#
# Objects that export symbols
export-objs := security.o
# Object file lists
obj-y := security.o dummy.o
obj-$(CONFIG_SECURITY_CAPABILITIES) += capability.o
include $(TOPDIR)/Rules.make
|