Nico Huber has uploaded this change for review. ( https://review.coreboot.org/28442
Change subject: arch/x86/Makefile: include dependencies for romcc bootblock ......................................................................
arch/x86/Makefile: include dependencies for romcc bootblock
We already explicitly generated a dependencies file for the romcc bootblock. Though, as it has its own rule and isn't registered to any of our object-file classes, the dependencies file wasn't included automatically.
Change-Id: I441cf229312dff82f377dcb594939fb85c441eed Signed-off-by: Nico Huber nico.huber@secunet.com --- M src/arch/x86/Makefile.inc 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/28442/1
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 1d9ee4d..584902a 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -145,6 +145,7 @@ cat $^ >> $@.tmp mv $@.tmp $@
+-include $(objgenerated)/bootblock.inc.d $(objgenerated)/bootblock.inc: $(src)/arch/x86/$(subst ",,$(CONFIG_BOOTBLOCK_SOURCE)) $(objutil)/romcc/romcc $(OPTION_TABLE_H) $(KCONFIG_AUTOHEADER) # The open quote in the subst messes with syntax highlighting. Fix it - ") @printf " ROMCC $(subst $(obj)/,,$(@))\n"