Files
David Hendricks 6d6d5fecc0 firmware/coreboot: Initial import via subtree merge
Signed-off-by: David Hendricks <dhendricks@fb.com>
2018-06-14 13:12:30 -07:00

25 lines
347 B
Makefile

top ?= $(abspath ../..)
objutil ?= $(top)/util
RM ?= rm
HOSTCC ?= $(CC)
VBOOT_SOURCE ?= $(top)/3rdparty/vboot
.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