You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
841 B
31 lines
841 B
OPT_SUBDIRS ?= dbus gui mcstrans python restorecond sandbox semodule-utils |
|
SUBDIRS=libsepol libselinux libsemanage checkpolicy secilc policycoreutils $(OPT_SUBDIRS) |
|
PYSUBDIRS=libselinux libsemanage |
|
DISTCLEANSUBDIRS=libselinux libsemanage |
|
|
|
ifeq ($(DEBUG),1) |
|
export CFLAGS = -g3 -O0 -gdwarf-2 -fno-strict-aliasing -Wall -Wshadow -Werror |
|
export LDFLAGS = -g |
|
endif |
|
|
|
ifneq ($(DESTDIR),) |
|
CFLAGS += -I$(DESTDIR)/usr/include |
|
LDFLAGS += -L$(DESTDIR)/usr/lib |
|
export CFLAGS |
|
export LDFLAGS |
|
endif |
|
|
|
all install relabel clean test indent: |
|
@for subdir in $(SUBDIRS); do \ |
|
(cd $$subdir && $(MAKE) $@) || exit 1; \ |
|
done |
|
|
|
install-pywrap install-rubywrap swigify: |
|
@for subdir in $(PYSUBDIRS); do \ |
|
(cd $$subdir && $(MAKE) $@) || exit 1; \ |
|
done |
|
|
|
distclean: |
|
@for subdir in $(DISTCLEANSUBDIRS); do \ |
|
(cd $$subdir && $(MAKE) $@) || exit 1; \ |
|
done
|
|
|