hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for building the SELinux module as part of the kernel tree.
#
 
obj-$(CONFIG_SECURITY_SELINUX) := selinux.o
 
selinux-y := avc.o hooks.o selinuxfs.o netlink.o nlmsgtab.o netif.o \
        netnode.o netport.o status.o \
        ss/ebitmap.o ss/hashtab.o ss/symtab.o ss/sidtab.o ss/avtab.o \
        ss/policydb.o ss/services.o ss/conditional.o ss/mls.o ss/context.o
 
selinux-$(CONFIG_ANDROID_VENDOR_HOOKS) += vendor_hooks.o
 
selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o
 
selinux-$(CONFIG_NETLABEL) += netlabel.o
 
selinux-$(CONFIG_SECURITY_INFINIBAND) += ibpkey.o
 
ccflags-y := -I$(srctree)/security/selinux -I$(srctree)/security/selinux/include
 
$(addprefix $(obj)/,$(selinux-y)): $(obj)/flask.h
 
quiet_cmd_flask = GEN     $(obj)/flask.h $(obj)/av_permissions.h
      cmd_flask = $< $(obj)/flask.h $(obj)/av_permissions.h
 
targets += flask.h av_permissions.h
# once make >= 4.3 is required, we can use grouped targets in the rule below,
# which basically involves adding both headers and a '&' before the colon, see
# the example below:
#   $(obj)/flask.h $(obj)/av_permissions.h &: scripts/selinux/...
$(obj)/flask.h: scripts/selinux/genheaders/genheaders FORCE
   $(call if_changed,flask)