diff options
author | Nico Huber <nico.huber@secunet.com> | 2018-09-03 15:39:33 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-09-05 10:06:36 +0000 |
commit | 4ba7b26019235d82b4c84361552ab6dff5766762 (patch) | |
tree | ef5c948a4fb57af20a20caae6903ec4d51a7b2ba /src/arch/x86 | |
parent | 0fc76910d6e71b48ae5fc42735b0a706fb09f83f (diff) |
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>
Reviewed-on: https://review.coreboot.org/28442
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/Makefile.inc b/src/arch/x86/Makefile.inc index 1d9ee4d5ef..584902a6a0 100644 --- a/src/arch/x86/Makefile.inc +++ b/src/arch/x86/Makefile.inc @@ -145,6 +145,7 @@ $(objgenerated)/bootblock.ld: $$(filter-out $(call src-to-obj,bootblock,src/arch 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" |