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