| Index: Makefile
|
| diff --git a/Makefile b/Makefile
|
| index e30d71628e69184649f968266770bd6baa2b8694..853bfbfa4c23e6a2e3516508bd8c85ef402eb178 100644
|
| --- a/Makefile
|
| +++ b/Makefile
|
| @@ -3,6 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| export CC ?= gcc
|
| +export CXX ?= g++
|
| export CFLAGS = -Wall -DNDEBUG -O3 -Werror
|
| export TOP = $(shell pwd)
|
| export FWDIR=$(TOP)/vboot_firmware
|
| @@ -14,7 +15,7 @@ export INCLUDES = \
|
| export FWLIB=$(FWDIR)/vboot_fw.a
|
| export HOSTLIB=$(HOSTDIR)/vboot_host.a
|
|
|
| -SUBDIRS=vboot_firmware misclibs host vfirmware vkernel utility tests
|
| +SUBDIRS=vboot_firmware misclibs host vfirmware vkernel utility cgpt tests
|
|
|
| all:
|
| set -e; \
|
| @@ -30,6 +31,7 @@ clean:
|
|
|
| install:
|
| $(MAKE) -C utility install
|
| + $(MAKE) -C cgpt install
|
|
|
| runtests:
|
| $(MAKE) -C tests runtests
|
|
|