ca55f0a0ea
The what-jenkins-does build runs distclean when building the utilities. It doesn't fail the build if distclean fails, but it generates a scary warning. Change-Id: Iac90958951976ed326a89ef2b5f2d9f17f9f2d6b Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/13888 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
23 lines
331 B
Makefile
23 lines
331 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
|
|
|
|
distclean: clean
|
|
|
|
ifneq ($(V),1)
|
|
ifneq ($(Q),)
|
|
.SILENT:
|
|
endif
|
|
endif
|
|
|
|
include Makefile.inc
|