swtpm/Makefile.am
Stefan Berger 1cd2dc6049 samples: swtpm-create-tpmca: Fix shellcheck issues and add to syntax-check target
Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
2023-02-22 17:27:05 -05:00

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