[coreboot] [commit] r6318 - trunk

repository service svn at coreboot.org
Sun Jan 30 08:40:32 CET 2011


Author: oxygene
Date: Sun Jan 30 08:40:32 2011
New Revision: 6318
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6318

Log:
Make cbfstool available in $(obj) for simple user access.

- integrated Peter's suggestion ($< $@)
- removed @ prefix, we use the .SILENT pseudo-target

Signed-off-by: Kevin O'Connor <kevin at koconnor.net>
Acked-by: Peter Stuge <peter at stuge.se>

Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	Sat Jan 29 06:51:54 2011	(r6317)
+++ trunk/Makefile	Sun Jan 30 08:40:32 2011	(r6318)
@@ -163,7 +163,10 @@
 #######################################################################
 # Build the tools
 
-CBFSTOOL:=$(objutil)/cbfstool/cbfstool
+CBFSTOOL:=$(obj)/cbfstool
+
+$(CBFSTOOL): $(objutil)/cbfstool/cbfstool
+	cp $< $@
 
 # needed objects that every mainboard uses
 # Creation of these is architecture and mainboard independent




More information about the coreboot mailing list