Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: src/platform/vboot_reference/Makefile

Issue 2561003: Add a Makefile target to run all vboot_reference tests. (Closed) Base URL: ssh://git@gitrw.chromium.org/chromiumos
Patch Set: Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/platform/vboot_reference/tests/Makefile » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 CC ?= gcc 5 export CC ?= gcc
6 export CFLAGS = -Wall -DNDEBUG -O3 -Werror 6 export CFLAGS = -Wall -DNDEBUG -O3 -Werror
7 export TOP = $(shell pwd) 7 export TOP = $(shell pwd)
8 export FWDIR=$(TOP)/vboot_firmware 8 export FWDIR=$(TOP)/vboot_firmware
9 export INCLUDES = \ 9 export INCLUDES = \
10 -I$(FWDIR)/include \ 10 -I$(FWDIR)/include \
(...skipping 10 matching lines...) Expand all
21 done 21 done
22 22
23 clean: 23 clean:
24 set -e; \ 24 set -e; \
25 for i in $(SUBDIRS); do \ 25 for i in $(SUBDIRS); do \
26 make -C $$i clean; \ 26 make -C $$i clean; \
27 done 27 done
28 28
29 install: 29 install:
30 $(MAKE) -C utility install 30 $(MAKE) -C utility install
31
32 runtests:
33 $(MAKE) -C tests runtests
OLDNEW
« no previous file with comments | « no previous file | src/platform/vboot_reference/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698