summaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.build
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2020-05-19 16:13:45 +0900
committerSascha Hauer <s.hauer@pengutronix.de>2020-05-20 13:16:56 +0200
commitff047395b9746aee1fe24e9c3f122c3706e72781 (patch)
treea8718b43f9d97c8bd0ad9a351ce23e35d5840851 /scripts/Makefile.build
parentc6aea1e9a377de5e67ce5c71d7487525af633a0b (diff)
downloadbarebox-ff047395b9746aee1fe24e9c3f122c3706e72781.tar.gz
barebox-ff047395b9746aee1fe24e9c3f122c3706e72781.tar.xz
kbuild: rename pbl object pbl-*.o to *.pbl.o
Currently, pbl objects are output to: <directory-path>/pbl-<basename>.o This commit changes as follows: <directory-path>/<basename>.pbl.o The motivation is not only to get rid of the ugly code introduced by commit 257abdaa36c8 ("Do not rm the path from pbl-y target"), but also to make it easier to remove obj-dtb-y, pbl-dtb-y, lwl-dtb-y syntax in the next commit. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r--scripts/Makefile.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 0232158570..956df9e23a 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -158,7 +158,7 @@ endef
# Built-in and composite module parts
-pbl-%.o: %.c FORCE
+%.pbl.o: %.c FORCE
$(call cmd,force_checksrc)
$(call if_changed_rule,pbl_cc_o_c)
@@ -201,7 +201,7 @@ cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
quiet_cmd_pbl_as_o_S = PBLAS $@
cmd_pbl_as_o_S = $(CC) -D__PBL__ $(a_flags) $(PBL_CPPFLAGS) -c -o $@ $<
-pbl-%.o: %.S FORCE
+%.pbl.o: %.S FORCE
$(call if_changed_dep,pbl_as_o_S)
%.o: %.S FORCE