2016-10-31 18:52:02 +01:00
|
|
|
OPT_SUBDIRS ?= dbus gui mcstrans python restorecond sandbox semodule-utils
|
2016-10-31 18:41:12 +01:00
|
|
|
SUBDIRS=libsepol libselinux libsemanage checkpolicy secilc policycoreutils $(OPT_SUBDIRS)
|
2008-08-19 21:30:36 +02:00
|
|
|
PYSUBDIRS=libselinux libsemanage
|
2016-09-28 23:40:32 +02:00
|
|
|
DISTCLEANSUBDIRS=libselinux libsemanage
|
2008-08-19 21:30:36 +02:00
|
|
|
|
|
|
|
ifeq ($(DEBUG),1)
|
|
|
|
export CFLAGS = -g3 -O0 -gdwarf-2 -fno-strict-aliasing -Wall -Wshadow -Werror
|
|
|
|
export LDFLAGS = -g
|
|
|
|
endif
|
|
|
|
|
2011-08-12 05:36:14 +02:00
|
|
|
all install relabel clean test indent:
|
2008-08-19 21:30:36 +02:00
|
|
|
@for subdir in $(SUBDIRS); do \
|
|
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
|
|
done
|
|
|
|
|
2012-06-01 15:13:24 +02:00
|
|
|
install-pywrap install-rubywrap swigify:
|
2008-08-19 21:30:36 +02:00
|
|
|
@for subdir in $(PYSUBDIRS); do \
|
|
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
|
|
done
|
|
|
|
|
|
|
|
distclean:
|
2011-08-12 05:36:14 +02:00
|
|
|
@for subdir in $(DISTCLEANSUBDIRS); do \
|
2008-08-19 21:30:36 +02:00
|
|
|
(cd $$subdir && $(MAKE) $@) || exit 1; \
|
|
|
|
done
|