blob: 6901948fa0bb33eeee5c6be25357db8c3126e60c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
## SPDX-License-Identifier: GPL-2.0-only
top ?= $(abspath ../..)
objutil ?= $(top)/util
RM ?= rm
HOSTCC ?= $(CC)
VBOOT_SOURCE ?= $(top)/3rdparty/vboot
VBOOT_HOST_BUILD ?= $(abspath $(objutil)/vboot_lib)
.PHONY: all
all: $(objutil)/futility/futility
.PHONY: clean
clean:
$(RM) -f $(objutil)/futility/futility
$(RM) -rf $(objutil)/futility/build
distclean: clean
ifneq ($(V),1)
ifneq ($(Q),)
.SILENT:
endif
endif
include Makefile.inc
|