swtpm/Makefile.am
Stefan Berger fd7a812b24 tests: Fix code to pass shellcheck with some errors disabled
Fix the test cases to pass shellcheck with some of the errors
disable.

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
2023-01-13 13:59:02 -05:00

34 lines
473 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
syntax-check:
@cd tests && $(MAKE) syntax-check
.PHONY: selinux-install selinux-uninstall syntax-check