From: Masahiro Yamada <masahiroy@kernel.org>
To: u-boot@lists.denx.de
Subject: [PATCH 1/3] kbuild: add FORCE to dependency of $(obj)/dts/dt-platdata.o
Date: Thu, 16 Apr 2020 13:38:24 +0900 [thread overview]
Message-ID: <20200416043826.490120-2-masahiroy@kernel.org> (raw)
In-Reply-To: <20200416043826.490120-1-masahiroy@kernel.org>
if_changed must have FORCE as a prerequisite.
Add $(obj)/dts/dt-platdata.o to 'targets' so that the corresponding
.cmd file is included.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---
scripts/Makefile.spl | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 314b02ba07..98c04bbbfc 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -307,10 +307,11 @@ quiet_cmd_dtoch = DTOC H $@
cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct
quiet_cmd_plat = PLAT $@
-cmd_plat = $(CC) $(c_flags) -c $< -o $@
+cmd_plat = $(CC) $(c_flags) -c $< -o $(filter-out $(PHONY),$@)
+targets += $(obj)/dts/dt-platdata.o
$(obj)/dts/dt-platdata.o: $(obj)/dts/dt-platdata.c \
- include/generated/dt-structs-gen.h
+ include/generated/dt-structs-gen.h FORCE
$(call if_changed,plat)
PHONY += dts_dir
--
2.25.1
next prev parent reply other threads:[~2020-04-16 4:38 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-16 4:38 [PATCH 0/3] support separate asm-offsets.h for SPL and TPL Masahiro Yamada
2020-04-16 4:38 ` Masahiro Yamada [this message]
2020-04-19 23:37 ` [PATCH 1/3] kbuild: add FORCE to dependency of $(obj)/dts/dt-platdata.o Simon Glass
2020-04-16 4:38 ` [PATCH 2/3] kbuild: cherry-pick kbuild changes from Linux Masahiro Yamada
2020-04-19 23:37 ` Simon Glass
2020-04-16 4:38 ` [PATCH 3/3] kbuild: SPL/TPL: generate separate asm-offsets.h for SPL and TPL Masahiro Yamada
2020-04-16 14:14 ` Bin Meng
2020-04-17 7:01 ` Masahiro Yamada
2020-04-17 7:10 ` Bin Meng
2020-04-17 11:19 ` Masahiro Yamada
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200416043826.490120-2-masahiroy@kernel.org \
--to=masahiroy@kernel.org \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox