 a7a387cc59
			
		
	
	
	a7a387cc59
	
	
	
		
			
			Fix build error caused by a stale security/selinux/av_permissions.h in the $(src) directory which will override a more recent version in $(obj) that is it appears to strike only when building with a separate object directory. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Acked-by: Eric Paris <eparis@redhat.com> Signed-off-by: James Morris <jmorris@namei.org>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			745 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			745 B
			
		
	
	
	
		
			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 \
 | |
| 	     netnode.o \
 | |
| 	     netport.o \
 | |
| 	     exports.o
 | |
| 
 | |
| selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o
 | |
| 
 | |
| selinux-$(CONFIG_NETLABEL) += netlabel.o
 | |
| 
 | |
| EXTRA_CFLAGS += -Isecurity/selinux -Isecurity/selinux/include
 | |
| 
 | |
| $(obj)/avc.o: $(obj)/flask.h
 | |
| 
 | |
| quiet_cmd_flask = GEN     $(obj)/flask.h $(obj)/av_permissions.h
 | |
|       cmd_flask = scripts/selinux/genheaders/genheaders $(obj)/flask.h $(obj)/av_permissions.h
 | |
| 
 | |
| targets += flask.h av_permissions.h
 | |
| $(obj)/flask.h: $(src)/include/classmap.h FORCE
 | |
| 	$(call if_changed,flask)
 |