Makefile 1.2 KB

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