blob: 2eaab3eaa5900ff24d47781dcce68e87aea4b840 (
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
|
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
|