swtpm/Makefile.am
Stefan Berger a7320793b8 build-sys: Add build targets selinux-install and selinux-uninstall
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>
2020-08-19 10:50:05 -04:00

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