summaryrefslogtreecommitdiffstats
path: root/util/futility/Makefile
blob: 14d5f8204c192ae731519d8c8e5081937f30ecf6 (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.mk