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