https://github.com/torvalds/linux
Raw File
Tip revision: 80c218812786f619c9a1ce50d0e7c32c7afde4de authored by Linus Torvalds on 08 November 2006, 02:24:20 UTC
Linux 2.6.19-rc5
Tip revision: 80c2188
Makefile
#
# Makefile for building the SELinux module as part of the kernel tree.
#

obj-$(CONFIG_SECURITY_SELINUX) := selinux.o ss/

selinux-y := avc.o hooks.o selinuxfs.o netlink.o nlmsgtab.o netif.o exports.o

selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o

EXTRA_CFLAGS += -Isecurity/selinux/include

back to top