| Index: Makefile
|
| diff --git a/Makefile b/Makefile
|
| index a377b76c9a17340124b0b9c8be7658142821038e..e30d71628e69184649f968266770bd6baa2b8694 100644
|
| --- a/Makefile
|
| +++ b/Makefile
|
| @@ -6,13 +6,15 @@ export CC ?= gcc
|
| export CFLAGS = -Wall -DNDEBUG -O3 -Werror
|
| export TOP = $(shell pwd)
|
| export FWDIR=$(TOP)/vboot_firmware
|
| +export HOSTDIR=$(TOP)/host
|
| export INCLUDES = \
|
| -I$(FWDIR)/include \
|
| -I$(TOP)/misclibs/include
|
|
|
| export FWLIB=$(FWDIR)/vboot_fw.a
|
| +export HOSTLIB=$(HOSTDIR)/vboot_host.a
|
|
|
| -SUBDIRS=vboot_firmware misclibs vfirmware vkernel utility tests
|
| +SUBDIRS=vboot_firmware misclibs host vfirmware vkernel utility tests
|
|
|
| all:
|
| set -e; \
|
|
|