https://github.com/torvalds/linux
Revision e2b1be56c5656902744c2b52e8304126a40bb609 authored by Jeff Garzik on 18 November 2005, 19:04:23 UTC, committed by Jeff Garzik on 18 November 2005, 19:04:23 UTC
1 parent c0ab424
Raw File
Tip revision: e2b1be56c5656902744c2b52e8304126a40bb609 authored by Jeff Garzik on 18 November 2005, 19:04:23 UTC
[libata sata_mv] update copyright, driver version
Tip revision: e2b1be5
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