mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 19:04:35 +00:00

Add build targets selinux-install and selinux-uninstall to install and uninstall the SELinux policy rules at a given priority. The priority defeaults to 400, which works fine on Fedora. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
30 lines
402 B
Makefile
30 lines
402 B
Makefile
#
|
|
# Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
etc \
|
|
include \
|
|
man \
|
|
samples \
|
|
src \
|
|
tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
CHANGES \
|
|
INSTALL \
|
|
LICENSE \
|
|
COPYING \
|
|
README \
|
|
autogen.sh
|
|
|
|
if WITH_SELINUX
|
|
selinux-install selinux-uninstall:
|
|
@cd src/selinux && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
.PHONY: selinux-install selinux-uninstall
|
|
endif
|