| Index: src/platform/vboot_reference/Makefile
|
| diff --git a/src/platform/vboot_reference/Makefile b/src/platform/vboot_reference/Makefile
|
| index 268b81f7ad20f207e7e5337fcc8fa36121aa1bcb..93f49dadeeefe935ea51ee5a234f1de1d2151798 100644
|
| --- a/src/platform/vboot_reference/Makefile
|
| +++ b/src/platform/vboot_reference/Makefile
|
| @@ -5,13 +5,15 @@
|
| export CC ?= gcc
|
| export CFLAGS = -Wall -DNDEBUG -O3 -Werror
|
| export TOP = $(shell pwd)
|
| +export FWDIR=$(TOP)/vboot_firmware
|
| export INCLUDES = \
|
| - -I$(TOP)/common/include \
|
| - -I$(TOP)/cryptolib/include \
|
| + -I$(FWDIR)/include \
|
| -I$(TOP)/misclibs/include \
|
| -I$(TOP)/cgptlib
|
|
|
| -SUBDIRS=common cgptlib cryptolib misclibs vfirmware vkernel utility tests
|
| +export FWLIB=$(FWDIR)/vboot_fw.a
|
| +
|
| +SUBDIRS=vboot_firmware cgptlib misclibs vfirmware vkernel utility tests
|
|
|
| all:
|
| set -e; \
|
|
|