mirror of
https://github.com/stefanberger/libtpms
synced 2026-01-01 04:45:32 +00:00
This is the initial import of the libtpms library. The libtpms library provides software emulation of a Trusted Platform Module (TPM). It is intended to be used by applications when a hardware TPM is not adequate. For example, a hypervisor can use libtpms to emulate an independent TPM for each of it's virtual machine guests. The library provides a high- level API for developers to integrate the emulated TPM support into their application. The code was originally written by Kenneth Goldman <kgoldman@us.ibm.com> and Stefan Berger <stefanb@us.ibm.com>. The code is licensed under the Modified BSD License. Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
#
|
|
# Makefile.am
|
|
#
|
|
# The Initial Developer of the Original Code is International
|
|
# Business Machines Corporation. Portions created by IBM
|
|
# Corporation are Copyright (C) 2005, 2011 International Business
|
|
# Machines Corporation. All Rights Reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the Common Public License as published by
|
|
# IBM Corporation; either version 1 of the License, or (at your option)
|
|
# any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# Common Public License for more details.
|
|
#
|
|
# You should have received a copy of the Common Public License
|
|
# along with this program; if not, a copy can be viewed at
|
|
# http://www.opensource.org/licenses/cpl1.0.php.
|
|
#
|
|
|
|
SUBDIRS = \
|
|
include \
|
|
m4 \
|
|
man \
|
|
src \
|
|
tests
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
EXTRA_DIST = \
|
|
CHANGES \
|
|
INSTALL \
|
|
LICENSE \
|
|
README \
|
|
libtpms.pc.in
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = libtpms.pc
|
|
|