aboutsummaryrefslogtreecommitdiff
path: root/util/futility/Makefile
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2016-02-01 12:03:04 +0100
committerMartin Roth <martinroth@google.com>2016-02-02 14:35:38 +0100
commitbda8a04b0105f2b097b07fa336891af6981541cb (patch)
tree9596901ce90f802b0f7e501a06f9c70da22b6f68 /util/futility/Makefile
parentf92068d9c24f295983e4904d327f342ae39cb9ed (diff)
build system: add Chrome OS futility to tools
Change-Id: I08925d110c6faa9e37107d63bfa75d0ab677d379 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: https://review.coreboot.org/13545 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'util/futility/Makefile')
-rw-r--r--util/futility/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/util/futility/Makefile b/util/futility/Makefile
new file mode 100644
index 0000000000..3ce45ed1ee
--- /dev/null
+++ b/util/futility/Makefile
@@ -0,0 +1,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