Home | History | Annotate | Download | only in policycoreutils
      1 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
      2 
      3 INOTIFYH = $(shell ls /usr/include/sys/inotify.h 2>/dev/null)
      4 
      5 ifeq (${INOTIFYH}, /usr/include/sys/inotify.h)
      6 	SUBDIRS += restorecond
      7 endif
      8 
      9 all install relabel clean indent:
     10 	@for subdir in $(SUBDIRS); do \
     11 		(cd $$subdir && $(MAKE) $@) || exit 1; \
     12 	done
     13 
     14 test:
     15