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