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>
13 lines
371 B
Makefile
13 lines
371 B
Makefile
additional-dirs += $(objutil)/futility
|
|
|
|
$(objutil)/futility/build/futility/futility:
|
|
@printf " MAKE $(subst $(objutil)/,,$(@))\n"
|
|
unset CFLAGS LDFLAGS; $(MAKE) -C $(VBOOT_SOURCE) \
|
|
BUILD=$(abspath $@/../..) \
|
|
CC="$(HOSTCC)" \
|
|
V=$(V) \
|
|
$(abspath $@)
|
|
|
|
$(objutil)/futility/futility: $(objutil)/futility/build/futility/futility
|
|
cp $< $@.tmp
|
|
mv $@.tmp $@
|