xref: /openbmc/u-boot/arch/sandbox/dts/Makefile (revision 6243c884)
1#
2# SPDX-License-Identifier:	GPL-2.0+
3#
4
5ifdef CONFIG_SANDBOX64
6dtb-$(CONFIG_SANDBOX) += sandbox64.dtb
7else
8dtb-$(CONFIG_SANDBOX) += sandbox.dtb
9endif
10dtb-$(CONFIG_UT_DM) += test.dtb
11
12targets += $(dtb-y)
13
14DTC_FLAGS += -R 4 -p 0x1000
15
16PHONY += dtbs
17dtbs: $(addprefix $(obj)/, $(dtb-y))
18	@:
19
20clean-files := *.dtb
21