 5778eabd9c
			
		
	
	
	5778eabd9c
	
	
	
		
			
			Up until this patch the functions which have provided NetLabel support to SELinux have been integrated into the SELinux security server, which for various reasons is not really ideal. This patch makes an effort to extract as much of the NetLabel support from the security server as possibile and move it into it's own file within the SELinux directory structure. Signed-off-by: Paul Moore <paul.moore@hp.com> Signed-off-by: James Morris <jmorris@namei.org>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			341 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			341 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 exports.o
 | |
| 
 | |
| selinux-$(CONFIG_SECURITY_NETWORK_XFRM) += xfrm.o
 | |
| 
 | |
| selinux-$(CONFIG_NETLABEL) += netlabel.o
 | |
| 
 | |
| EXTRA_CFLAGS += -Isecurity/selinux/include
 | |
| 
 |