Makefile (48a7afe314bfc4d7f50e1608632f503dbba7e013) | Makefile (224dfbd81e1ff672eb46e7695469c395bd531083) |
---|---|
1# 2# Makefile for building the SELinux module as part of the kernel tree. 3# 4 5obj-$(CONFIG_SECURITY_SELINUX) := selinux.o ss/ 6 | 1# 2# Makefile for building the SELinux module as part of the kernel tree. 3# 4 5obj-$(CONFIG_SECURITY_SELINUX) := selinux.o ss/ 6 |
7selinux-y := avc.o hooks.o selinuxfs.o netlink.o nlmsgtab.o netif.o exports.o | 7selinux-y := avc.o \ 8 hooks.o \ 9 selinuxfs.o \ 10 netlink.o \ 11 nlmsgtab.o \ 12 netif.o \ 13 netnode.o \ 14 exports.o |
8 9selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o 10 11selinux-$(CONFIG_NETLABEL) += netlabel.o 12 13EXTRA_CFLAGS += -Isecurity/selinux/include 14 | 15 16selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o 17 18selinux-$(CONFIG_NETLABEL) += netlabel.o 19 20EXTRA_CFLAGS += -Isecurity/selinux/include 21 |