1af101e7fSchristos#
2af101e7fSchristos# Makefile.am
3af101e7fSchristos#
4af101e7fSchristos#       The Initial Developer of the Original Code is International
5af101e7fSchristos#       Business Machines Corporation. Portions created by IBM
6af101e7fSchristos#       Corporation are Copyright (C) 2005, 2006 International Business
7af101e7fSchristos#       Machines Corporation. All Rights Reserved.
8af101e7fSchristos#
9af101e7fSchristos#       This program is free software; you can redistribute it and/or modify
10af101e7fSchristos#       it under the terms of the Common Public License as published by
11af101e7fSchristos#       IBM Corporation; either version 1 of the License, or (at your option)
12af101e7fSchristos#       any later version.
13af101e7fSchristos#
14af101e7fSchristos#       This program is distributed in the hope that it will be useful,
15af101e7fSchristos#       but WITHOUT ANY WARRANTY; without even the implied warranty of
16af101e7fSchristos#       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17af101e7fSchristos#       Common Public License for more details.
18af101e7fSchristos#
19af101e7fSchristos#       You should have received a copy of the Common Public License
20af101e7fSchristos#       along with this program; if not, a copy can be viewed at
21af101e7fSchristos#       http://www.opensource.org/licenses/cpl1.0.php.
22af101e7fSchristos#
23af101e7fSchristos
24af101e7fSchristosbin_PROGRAMS 	=	tpm_sealdata \
25af101e7fSchristos			tpm_unsealdata
26af101e7fSchristos
27af101e7fSchristosif TSS_LIB_IS_12
28af101e7fSchristosAM_CPPFLAGS	=	-I$(top_srcdir)/include -D_LINUX -DTSS_LIB_IS_12
29af101e7fSchristoselse
30af101e7fSchristosAM_CPPFLAGS	=	-I$(top_srcdir)/include -D_LINUX
31af101e7fSchristosendif
32af101e7fSchristos
33*739b7041SchristosLDADD		=	$(top_builddir)/lib/libtpm_tspi.la -ltspi $(top_builddir)/lib/libtpm_unseal.la -ltpm_unseal -lcrypto @INTLLIBS@
34af101e7fSchristos
35af101e7fSchristostpm_sealdata_SOURCES = tpm_sealdata.c
36af101e7fSchristostpm_unsealdata_SOURCES = tpm_unsealdata.c
37