mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
9e5183ee41
These patterns are cleaned-up by the top-level Makefile Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Greentime Hu <green.hu@gmail.com> Signed-off-by: Greentime Hu <green.hu@gmail.com>
8 lines
209 B
Makefile
8 lines
209 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
ifneq '$(CONFIG_NDS32_BUILTIN_DTB)' '""'
|
|
BUILTIN_DTB := $(patsubst "%",%,$(CONFIG_NDS32_BUILTIN_DTB)).dtb.o
|
|
else
|
|
BUILTIN_DTB :=
|
|
endif
|
|
obj-$(CONFIG_OF) += $(BUILTIN_DTB)
|