Antonello Dettori (dev@dettori.io) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15075
-gerrit
commit 6223a1acbce90696919f9a4d6db95e4cf3e21709 Author: Antonello Dettori dettori.an@gmail.com Date: Sun Jun 5 17:26:01 2016 +0200
cbfstool: Allow to easily build the individual tools
Adds a label for each tool included in the cbfstool package in order to build them more easily through Make.
Change-Id: Id1e5164240cd12d22cba18d7cc4571fbadad38af Signed-off-by: Antonello Dettori dettori.an@gmail.com --- util/cbfstool/Makefile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index f49da3e..14696ea 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -7,12 +7,17 @@ HOSTCC ?= $(CC) OBJCOPY ?= objcopy
.PHONY: all -all: $(objutil)/cbfstool/cbfstool \ - $(objutil)/cbfstool/fmaptool \ - $(objutil)/cbfstool/rmodtool \ - $(objutil)/cbfstool/ifwitool \ +all: cbfstool fmaptool rmodtool ifwitool
-.PHONY: clean +cbfstool: $(objutil)/cbfstool/cbfstool + +fmaptool: $(objutil)/cbfstool/fmaptool + +rmodtool: $(objutil)/cbfstool/rmodtool + +ifwitool: $(objutil)/cbfstool/ifwitool + +.PHONY: clean cbfstool fmaptool rmodtool ifwitool clean: $(RM) fmd_parser.c fmd_parser.h fmd_scanner.c fmd_scanner.h $(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj)