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

This (experimental) script uses GnuTLS tpmtool to create a TPM 1.2 intermediate CA that can sign a vTPM's EK and platform certificates. Add a man page for this tool. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
29 lines
595 B
Makefile
29 lines
595 B
Makefile
#
|
|
# samples/Makefile.am
|
|
#
|
|
# For the license, see the LICENSE file in the root directory.
|
|
#
|
|
|
|
samplesconfdir = $(datadir)/@PACKAGE@
|
|
samplessysconfdir = $(sysconfdir)
|
|
|
|
samplesconf_SCRIPTS = \
|
|
swtpm-create-tpmca \
|
|
swtpm-localca
|
|
|
|
samplessysconf_DATA = \
|
|
swtpm-localca.conf \
|
|
swtpm-localca.options
|
|
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(localstatedir)/lib/swtpm-localca
|
|
if test -z $(DESTDIR); then \
|
|
chown @TSS_USER@:@TSS_GROUP@ $(DESTDIR)$(localstatedir)/lib/swtpm-localca || true; \
|
|
fi
|
|
|
|
EXTRA_DIST= \
|
|
swtpm-create-tpmca \
|
|
swtpm-localca \
|
|
swtpm-localca.conf \
|
|
swtpm-localca.options
|