c417f6b
# installation paths
585f827
SHAREDIR := /usr/share/selinux
de82d85
de82d85
AWK ?= gawk
585f827
NAME ?= $(shell $(AWK) -F= '/^SELINUXTYPE/{ print $$2 }' /etc/selinux/config)
de82d85
de82d85
MLSENABLED := $(shell cat /selinux/mls)
529f12c
ifeq ($(MLSENABLED),)
529f12c
	MLSENABLED := 1
529f12c
endif
529f12c
de82d85
ifeq ($(MLSENABLED),1)
de82d85
MCSFLAG=-mcs
de82d85
endif
de82d85
de82d85
TYPE ?= $(NAME)${MCSFLAG}
f4d1707
HEADERDIR := $(SHAREDIR)/devel/include
585f827
include $(HEADERDIR)/Makefile
a57054e