summaryrefslogtreecommitdiff
path: root/util/futility/Makefile
blob: 3ce45ed1eeb7cfa6c5be7ac8610c64e3f7178b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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