blob: 36f2b317f730266ba5988da0b8d39fe3e96d04a2 [file] [log] [blame]
Patrick Georgibda8a04b2016-02-01 12:03:04 +01001top ?= $(abspath ../..)
2objutil ?= $(top)/util
3
4HOSTCC ?= $(CC)
Paul Kocialkowski46114512016-07-24 12:10:38 +02005VBOOT_SOURCE ?= $(top)/3rdparty/vboot
Patrick Georgibda8a04b2016-02-01 12:03:04 +01006
7.PHONY: all
8all: $(objutil)/futility/futility
9
10.PHONY: clean
11clean:
12 $(RM) $(objutil)/futility/futility
13 $(RM) -r $(objutil)/futility/build
14
Martin Rothca55f0a2016-03-03 12:11:47 -070015distclean: clean
16
Patrick Georgibda8a04b2016-02-01 12:03:04 +010017ifneq ($(V),1)
18ifneq ($(Q),)
19.SILENT:
20endif
21endif
22
23include Makefile.inc