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 export FIRMWARE_ARCH | 5 export FIRMWARE_ARCH |
| 6 export MOCK_TPM |
6 | 7 |
7 export CC ?= gcc | 8 export CC ?= gcc |
8 export CXX ?= g++ | 9 export CXX ?= g++ |
9 export CFLAGS = -Wall -Werror | 10 export CFLAGS = -Wall -Werror |
10 | 11 |
11 ifeq (${DEBUG},) | 12 ifeq (${DEBUG},) |
12 CFLAGS += -O3 | 13 CFLAGS += -O3 |
13 else | 14 else |
14 CFLAGS += -O0 -g | 15 CFLAGS += -O0 -g |
15 endif | 16 endif |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 $(MAKE) -C cgpt install | 74 $(MAKE) -C cgpt install |
74 | 75 |
75 runtests: | 76 runtests: |
76 $(MAKE) -C tests runtests | 77 $(MAKE) -C tests runtests |
77 | 78 |
78 rbtest: | 79 rbtest: |
79 $(MAKE) -C tests rbtest | 80 $(MAKE) -C tests rbtest |
80 | 81 |
81 runbmptests: | 82 runbmptests: |
82 $(MAKE) -C tests runbmptests | 83 $(MAKE) -C tests runbmptests |
OLD | NEW |