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

Move the regex test for the PCR banks into the configure script. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
31 lines
410 B
Makefile
31 lines
410 B
Makefile
#
|
|
# Makefile.am
|
|
#
|
|
# For the license, see the COPYING file in the root directory.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
include \
|
|
man \
|
|
samples \
|
|
src \
|
|
tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
CHANGES \
|
|
INSTALL \
|
|
LICENSE \
|
|
COPYING \
|
|
README \
|
|
swtpm.spec \
|
|
autogen.sh
|
|
|
|
if WITH_SELINUX
|
|
selinux-install selinux-uninstall:
|
|
@cd src/selinux && $(MAKE) $(AM_MAKEFLAGS) $@
|
|
endif
|
|
|
|
.PHONY: selinux-install selinux-uninstall
|