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

Side by Side Diff: src/platform/vboot_reference/misclibs/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
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 TOP ?= ../ 5 TOP ?= ../
6 CC ?= gcc 6 CC ?= gcc
7 INCLUDES += -I./include \ 7 INCLUDES += -I./include \
8 -I$(TOP)/common/include \ 8 -I$(TOP)/common/include \
9 » » -I$(TOP)/cryptolib/include \ 9 » » -I$(TOP)/vboot_firmware/lib/cryptolib/include \
10 -I$(TOP)/vfirmware/include \ 10 -I$(TOP)/vfirmware/include \
11 -I$(TOP)/vkernel/include 11 -I$(TOP)/vkernel/include
12 12
13 CFLAGS ?= -Wall -DNDEBUG -O3 -Werror $(INCLUDES) 13 CFLAGS ?= -Wall -DNDEBUG -O3 -Werror $(INCLUDES)
14 TOP ?= ../ 14 TOP ?= ../
15 15
16 MISCLIB_OUT = file_keys.o signature_digest.o 16 MISCLIB_OUT = file_keys.o signature_digest.o
17 17
18 all: $(MISCLIB_OUT) 18 all: $(MISCLIB_OUT)
19 19
20 .c.o: 20 .c.o:
21 $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@ 21 $(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
22 22
23 clean: 23 clean:
24 rm -f $(MISCLIB_OUT) 24 rm -f $(MISCLIB_OUT)
OLDNEW
« no previous file with comments | « src/platform/vboot_reference/cryptolib/Makefile ('k') | src/platform/vboot_reference/tests/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698