platform_external_selinux/libsepol/Makefile
Steve Lawrence 416f150f1a libsepol: build cil into libsepol
Set DISABLE_CIL=y to build libsepol without CIL support, e.g

    make DISABLE_CIL=y

To enable CIL support in libsepol, set DISABLE_CIL=n. This is the default
if not specified.

Signed-off-by: Steve Lawrence <slawrence@tresys.com>
2014-08-26 08:03:31 -04:00

30 lines
407 B
Makefile

DISABLE_CIL ?= n
export DISABLE_CIL
all:
$(MAKE) -C src
$(MAKE) -C utils
install:
$(MAKE) -C include install
$(MAKE) -C src install
$(MAKE) -C utils install
$(MAKE) -C man install
relabel:
$(MAKE) -C src relabel
clean:
$(MAKE) -C src clean
$(MAKE) -C utils clean
$(MAKE) -C tests clean
indent:
$(MAKE) -C src $@
$(MAKE) -C include $@
$(MAKE) -C utils $@
test:
$(MAKE) -C tests test