summaryrefslogtreecommitdiff
path: root/autotest/client/hardware_TPMFirmware/src/Makefile
blob: 0f9f35ae5581f321d084790a5a5c689a94131d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

BINDIR = .
PROGRAMS = \
	earlyextend      \
	earlynvram       \
	earlynvram2      \
	enable           \
	fastenable       \
	globallock       \
	redefine_unowned \
	spaceperm        \
	testsetup        \
	timing           \
	writelimit       \

all:
	$(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