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

Unified Diff: src/platform/vboot_reference/Makefile

Issue 1581005: VBoot Reference: Refactoring Part 3 (Closed)
Patch Set: . Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/platform/vboot_reference/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/vboot_reference/Makefile
diff --git a/src/platform/vboot_reference/Makefile b/src/platform/vboot_reference/Makefile
index 9d80a43d49180c973567650e630c9a89fb3ed4bd..4db96faecae61626cf30b820ebe4bdcb4ef9f3ef 100644
--- a/src/platform/vboot_reference/Makefile
+++ b/src/platform/vboot_reference/Makefile
@@ -5,10 +5,12 @@
export CC ?= gcc
export CFLAGS = -Wall -DNDEBUG -O3 -Werror
export TOP = $(shell pwd)
-export INCLUDEDIR = $(TOP)/include
-export INCLUDES = -I$(INCLUDEDIR)
+export INCLUDES = \
+ -I$(TOP)/common/include \
+ -I$(TOP)/cryptolib/include \
+ -I$(TOP)/misclibs/include
-SUBDIRS=common crypto utils tests
+SUBDIRS=common cryptolib misclibs vfirmware vkernel utility tests
all:
for i in $(SUBDIRS); do \
« no previous file with comments | « no previous file | src/platform/vboot_reference/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698