mirror of
https://github.com/stefanberger/swtpm.git
synced 2025-08-22 10:30:52 +00:00
35 lines
510 B
Makefile
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
|