coreboot-kgpe-d16/util/futility/Makefile
Patrick Georgi bda8a04b01 build system: add Chrome OS futility to tools
Change-Id: I08925d110c6faa9e37107d63bfa75d0ab677d379
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/13545
Tested-by: build bot (Jenkins)
Reviewed-by: Nico Huber <nico.h@gmx.de>
2016-02-02 14:35:38 +01:00

21 lines
313 B
Makefile

top ?= $(abspath ../..)
objutil ?= $(top)/util
HOSTCC ?= $(CC)
VB_SOURCE ?= $(top)/3rdparty/vboot
.PHONY: all
all: $(objutil)/futility/futility
.PHONY: clean
clean:
$(RM) $(objutil)/futility/futility
$(RM) -r $(objutil)/futility/build
ifneq ($(V),1)
ifneq ($(Q),)
.SILENT:
endif
endif
include Makefile.inc