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

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

Issue 2219004: Rearrange vboot_reference directories to isolate external components. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: Created 10 years, 7 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/cgptlib/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 INCLUDES = \ 9 export INCLUDES = \
9 » -I$(TOP)/common/include \ 10 » -I$(FWDIR)/include \
10 » -I$(TOP)/cryptolib/include \
11 -I$(TOP)/misclibs/include \ 11 -I$(TOP)/misclibs/include \
12 -I$(TOP)/cgptlib 12 -I$(TOP)/cgptlib
13 13
14 SUBDIRS=common cgptlib cryptolib misclibs vfirmware vkernel utility tests 14 export FWLIB=$(FWDIR)/vboot_fw.a
15
16 SUBDIRS=vboot_firmware cgptlib misclibs vfirmware vkernel utility tests
15 17
16 all: 18 all:
17 set -e; \ 19 set -e; \
18 for i in $(SUBDIRS); do \ 20 for i in $(SUBDIRS); do \
19 make -C $$i; \ 21 make -C $$i; \
20 done 22 done
21 23
22 clean: 24 clean:
23 set -e; \ 25 set -e; \
24 for i in $(SUBDIRS); do \ 26 for i in $(SUBDIRS); do \
25 make -C $$i clean; \ 27 make -C $$i clean; \
26 done 28 done
OLDNEW
« no previous file with comments | « no previous file | src/platform/vboot_reference/cgptlib/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698