Change Makefile for new test ebuild.
Change-Id: Idb081dccdcba17005cd3edc059e58b78316c3dbe
BUG=none
TEST=ran the ebuild (separate CL) and verified that the targets are created
Review URL: http://codereview.chromium.org/3480004
diff --git a/autotest/client/hardware_TPMFirmware/src/Makefile b/autotest/client/hardware_TPMFirmware/src/Makefile
index d864f40..0f9f35a 100644
--- a/autotest/client/hardware_TPMFirmware/src/Makefile
+++ b/autotest/client/hardware_TPMFirmware/src/Makefile
@@ -2,34 +2,24 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-TPM = tpm
-TPM_SRC_DIR = $(GCLIENT_ROOT)/src/third_party/$(TPM)
-TPM_WORK_DIR = $(TPM)
-
-TLCL = tpm_lite
-TLCL_SRC_DIR = $(GCLIENT_ROOT)/src/platform/$(TLCL)
-TLCL_WORK_DIR = $(TLCL)
-
BINDIR = .
PROGRAMS = \
- clear \
- enable \
- globallock \
- lock \
- readonly \
- writelimit
+ earlyextend \
+ earlynvram \
+ earlynvram2 \
+ enable \
+ fastenable \
+ globallock \
+ redefine_unowned \
+ spaceperm \
+ testsetup \
+ timing \
+ writelimit \
all:
- rm -rf $(TPM_WORK_DIR)
- cp -a $(TPM_SRC_DIR) $(TPM_WORK_DIR)
- $(MAKE) -C $(TPM_WORK_DIR)/nvtool clean
- $(MAKE) -C $(TPM_WORK_DIR)/nvtool
- rm -rf $(TLCL_WORK_DIR)
- cp -a $(TLCL_SRC_DIR) $(TLCL_WORK_DIR)
- $(MAKE) -C $(TLCL_WORK_DIR)/src clean
- $(MAKE) cross USE_TPM_EMULATOR=0 -C $(TLCL_WORK_DIR)/src
- # gets rid of host binary which confuses ARM build
- rm $(TLCL_WORK_DIR)/src/tlcl/generator
- cp $(TPM_WORK_DIR)/nvtool/tpm-nvtool $(BINDIR)
- set -e; for i in $(PROGRAMS); \
- do cp $(TLCL_WORK_DIR)/src/testsuite/tpmtest_$$i $(BINDIR); done
+ $(MAKE) -C $(VBOOT_DIR) clean
+ $(MAKE) -C $(VBOOT_DIR)
+ set -e; \
+ for i in $(PROGRAMS); do \
+ cp $(VBOOT_DIR)/build/tests/tpm_lite/tpmtest_$$i $(BINDIR); \
+ done