mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 09:02:17 +00:00
19d111ccce
I guess
|| (rm -f $@ && echo false)
... should be
|| (rm -f $@ && false)
In fact, no Makefile needs to delete a target explicitly on error.
It is automatically done since commit 9c2af1c737
("kbuild: add
.DELETE_ON_ERROR special target").
I also reused equivalent cmd_shipped from scripts/Makefile.lib.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
21 lines
358 B
Makefile
21 lines
358 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
|
|
dtb-y := system.dtb
|
|
|
|
ifneq ($(DTB),)
|
|
obj-y += linked_dtb.o
|
|
|
|
# Ensure system.dtb exists
|
|
$(obj)/linked_dtb.o: $(obj)/system.dtb
|
|
|
|
# Generate system.dtb from $(DTB).dtb
|
|
ifneq ($(DTB),system)
|
|
$(obj)/system.dtb: $(obj)/$(DTB).dtb
|
|
$(call if_changed,shipped)
|
|
endif
|
|
endif
|
|
|
|
# Rule to build device tree blobs
|
|
DTC_FLAGS := -p 1024
|