Martin Roth (gaumless@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10656
-gerrit
commit 68ebb24714e134cdade234127f14fd94096dc4fc Author: Martin Roth gaumless@gmail.com Date: Wed Jun 24 20:03:08 2015 -0600
Makefile.inc: Clean up SeaBIOS clean command line
Passing the argments to the sub-make is no longer needed.
Change-Id: Ie4fa3e36c2911eb25f201506df0e79b415d3e9b9 Signed-off-by: Martin Roth gaumless@gmail.com --- Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.inc b/Makefile.inc index 2f1fe82..eb5cc65 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -381,7 +381,7 @@ clean-for-update-target: rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/mainboard/$(MAINBOARDDIR)/dsdt.* rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm - $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean OUT=$(abspath $(obj)) HOSTCC="$(HOSTCC)" CC="$(CC_x86_32)" LD="$(LD_x86_32)" + $(MAKE) -C payloads/external/SeaBIOS -f Makefile.inc clean
clean-target: rm -f $(obj)/coreboot*