[coreboot-gerrit] New patch to review for coreboot: cbfstool: Allow to easily build the individual tools

Antonello Dettori (dev@dettori.io) gerrit at coreboot.org
Sun Jun 5 17:30:34 CEST 2016


Antonello Dettori (dev at dettori.io) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15075

-gerrit

commit 98298f27cdc09c7dcb375904a2fa0f9bc603d877
Author: Antonello Dettori <dettori.an at 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 through Make more easily.
    
    Change-Id: Id1e5164240cd12d22cba18d7cc4571fbadad38af
    Signed-off-by: Antonello Dettori <dettori.an at gmail.com>
---
 util/cbfstool/Makefile | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile
index f49da3e..2b0a07b 100644
--- a/util/cbfstool/Makefile
+++ b/util/cbfstool/Makefile
@@ -10,9 +10,17 @@ OBJCOPY ?= objcopy
 all: $(objutil)/cbfstool/cbfstool \
 	$(objutil)/cbfstool/fmaptool \
 	$(objutil)/cbfstool/rmodtool \
-	$(objutil)/cbfstool/ifwitool \
+	$(objutil)/cbfstool/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)



More information about the coreboot-gerrit mailing list