https://github.com/torvalds/linux
Revision b7277155f8fa89cd5696140b4a93cfb53d0091ff authored by Greg Kroah-Hartman on 24 August 2006, 04:11:56 UTC, committed by Greg Kroah-Hartman on 24 August 2006, 04:11:56 UTC
2 parent s ccc712f + c712a9d
Raw File
Tip revision: b7277155f8fa89cd5696140b4a93cfb53d0091ff authored by Greg Kroah-Hartman on 24 August 2006, 04:11:56 UTC
Merge branch 'for-linus' of gregkh@master.kernel.org:/pub/scm/linux/kernel/git/dtor/input
Tip revision: b727715
Makefile
#
# Makefile for the kernel security code
#

obj-$(CONFIG_KEYS)			+= keys/
subdir-$(CONFIG_SECURITY_SELINUX)	+= selinux

# if we don't select a security model, use the default capabilities
ifneq ($(CONFIG_SECURITY),y)
obj-y		+= commoncap.o
endif

# Object file lists
obj-$(CONFIG_SECURITY)			+= security.o dummy.o inode.o
# Must precede capability.o in order to stack properly.
obj-$(CONFIG_SECURITY_SELINUX)		+= selinux/built-in.o
obj-$(CONFIG_SECURITY_CAPABILITIES)	+= commoncap.o capability.o
obj-$(CONFIG_SECURITY_ROOTPLUG)		+= commoncap.o root_plug.o
obj-$(CONFIG_SECURITY_SECLVL)		+= seclvl.o
back to top