home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / security / selinux / Makefile < prev   
Encoding:
Makefile  |  2008-12-24  |  425 b   |  23 lines

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