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

Side by Side Diff: Makefile

Issue 2857030: Exhaustive test for rollback code (Closed) Base URL: ssh://git@chromiumos-git/vboot_reference.git
Patch Set: Fix write count handling and improve comments. Created 10 years, 5 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 | firmware/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 CXX ?= g++ 6 export CXX ?= g++
7 export CFLAGS = -Wall -DNDEBUG -O3 -Werror -DCHROMEOS_ENVIRONMENT 7 export CFLAGS = -Wall -DNDEBUG -O3 -Werror -DCHROMEOS_ENVIRONMENT
8 export TOP = $(shell pwd) 8 export TOP = $(shell pwd)
9 export FWDIR=$(TOP)/firmware 9 export FWDIR=$(TOP)/firmware
10 export HOSTDIR=$(TOP)/host 10 export HOSTDIR=$(TOP)/host
(...skipping 17 matching lines...) Expand all
28 for i in $(SUBDIRS); do \ 28 for i in $(SUBDIRS); do \
29 make -C $$i; \ 29 make -C $$i; \
30 done 30 done
31 31
32 clean: 32 clean:
33 /bin/rm -rf ${BUILD} 33 /bin/rm -rf ${BUILD}
34 34
35 install: 35 install:
36 $(MAKE) -C utility install 36 $(MAKE) -C utility install
37 $(MAKE) -C cgpt install 37 $(MAKE) -C cgpt install
38 $(MAKE) -C tests install
38 39
39 runtests: 40 runtests:
40 $(MAKE) -C tests runtests 41 $(MAKE) -C tests runtests
OLDNEW
« no previous file with comments | « no previous file | firmware/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698