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 <ke...@koconnor.net>
Acked-by: Peter Stuge <pe...@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

-- 
coreboot mailing list: coreboot@coreboot.org
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to