diff options
Diffstat (limited to 'util/futility/Makefile')
-rw-r--r-- | util/futility/Makefile | 21 |
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 |