46114517d7
This renames the VB_SOURCE variable to VBOOT_SOURCE in the build system, providing increased clarity about what it represents. Since the submodule itself is called "vboot", it makes sense to use that name in full instead of a very shortened (and confusing) version of it. Change-Id: Ib343b6642363665ec1205134832498a59b7c4a26 Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Reviewed-on: https://review.coreboot.org/15824 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
23 lines
334 B
Makefile
23 lines
334 B
Makefile
top ?= $(abspath ../..)
|
|
objutil ?= $(top)/util
|
|
|
|
HOSTCC ?= $(CC)
|
|
VBOOT_SOURCE ?= $(top)/3rdparty/vboot
|
|
|
|
.PHONY: all
|
|
all: $(objutil)/futility/futility
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) $(objutil)/futility/futility
|
|
$(RM) -r $(objutil)/futility/build
|
|
|
|
distclean: clean
|
|
|
|
ifneq ($(V),1)
|
|
ifneq ($(Q),)
|
|
.SILENT:
|
|
endif
|
|
endif
|
|
|
|
include Makefile.inc
|