OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 VBOOT_SRC_DIR ?= ../../.. | 5 VBOOT_SRC_DIR ?= ../../../.. |
6 BUILD_TEST_DIR = vboot_tests | 6 BUILD_TEST_DIR = vboot_tests |
7 # Test Binaries. | 7 # Test Binaries. |
8 TEST_BINS = \ | 8 TEST_BINS = \ |
9 cgptlib_test \ | 9 cgptlib_test \ |
10 rsa_padding_test \ | 10 rsa_padding_test \ |
11 rsa_verify_benchmark \ | 11 rsa_verify_benchmark \ |
12 sha_benchmark \ | 12 sha_benchmark \ |
13 sha_tests \ | 13 sha_tests \ |
14 vboot_common_tests \ | 14 vboot_common_tests \ |
15 vboot_common2_tests \ | 15 vboot_common2_tests \ |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 # Move utility binaries used by the tests. | 63 # Move utility binaries used by the tests. |
64 mkdir -p build/utility | 64 mkdir -p build/utility |
65 set -e; for i in $(UTIL_BINS); do \ | 65 set -e; for i in $(UTIL_BINS); do \ |
66 mv $(BUILD_TEST_DIR)/build/utility/$$i build/utility/ ;\ | 66 mv $(BUILD_TEST_DIR)/build/utility/$$i build/utility/ ;\ |
67 done | 67 done |
68 # Delete sources. | 68 # Delete sources. |
69 rm -rf $(BUILD_TEST_DIR) | 69 rm -rf $(BUILD_TEST_DIR) |
70 | 70 |
71 clean: | 71 clean: |
72 rm -rf utility/ tests/ | 72 rm -rf utility/ tests/ |
OLD | NEW |