aboutsummaryrefslogtreecommitdiffstats
path: root/stubdom/vtpm
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2013-01-24 12:47:55 +0000
committerIan Campbell <ian.campbell@citrix.com>2013-01-24 12:47:55 +0000
commitc4e4a1e20e36c7887baeb9f0a186d739fca639f1 (patch)
tree9ee7555f2a40c0587ba44fd4b776b26b3c5252c5 /stubdom/vtpm
parentd17eec3f89aa7a3770f95357b120782dae6e72af (diff)
downloadxen-c4e4a1e20e36c7887baeb9f0a186d739fca639f1.tar.gz
xen-c4e4a1e20e36c7887baeb9f0a186d739fca639f1.tar.bz2
xen-c4e4a1e20e36c7887baeb9f0a186d739fca639f1.zip
vtpm/vtpmmgr: Use libpolarssl.a instead of hardcoding own list of .o files
Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Acked by: Matthew Fioravante <matthew.fioravante@jhuapl.edu> Committed-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'stubdom/vtpm')
-rw-r--r--stubdom/vtpm/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/stubdom/vtpm/Makefile b/stubdom/vtpm/Makefile
index 30f7a1ab2e..37051c1ffb 100644
--- a/stubdom/vtpm/Makefile
+++ b/stubdom/vtpm/Makefile
@@ -11,9 +11,6 @@
XEN_ROOT=../..
-PSSL_DIR=../polarssl-$(XEN_TARGET_ARCH)/library
-PSSL_OBJS=aes.o sha1.o entropy.o ctr_drbg.o sha4.o padlock.o
-
TARGET=vtpm.a
OBJS=vtpm.o vtpm_cmd.o vtpmblk.o vtpm_pcrs.o
@@ -24,7 +21,7 @@ CPPFLAGS+=-I../tpm_emulator-$(XEN_TARGET_ARCH)/crypto
CPPFLAGS+=-I../tpm_emulator-$(XEN_TARGET_ARCH)
$(TARGET): $(OBJS)
- ar -cr $@ $(OBJS) $(TPMEMU_OBJS) $(foreach obj,$(PSSL_OBJS),$(PSSL_DIR)/$(obj))
+ ar -cr $@ $(OBJS)
$(OBJS): vtpm_manager.h