893851c0a1
Reads in a policy package file via stdin or via filename, and writes out the equivilent CIL to stdout or to an output file, depending on the parameters passed in. Signed-off-by: Steve Lawrence <slawrence@tresys.com>
14 lines
484 B
Makefile
14 lines
484 B
Makefile
SUBDIRS = sepolicy setfiles semanage load_policy newrole run_init sandbox secon audit2allow sestatus semodule_package semodule semodule_link semodule_expand semodule_deps sepolgen-ifgen setsebool scripts po man gui hll
|
|
|
|
INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null)
|
|
|
|
ifeq (${INOTIFYH}, /usr/include/sys/inotify.h)
|
|
SUBDIRS += restorecond
|
|
endif
|
|
|
|
all install relabel clean indent:
|
|
@for subdir in $(SUBDIRS); do \
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
done
|
|
|
|
test:
|