1# SPDX-License-Identifier: GPL-2.0+ 2# 3# Copyright 2013-2015 Arcturus Networks, Inc. 4# based on board/freescale/p1_p2_rdb_pc/Makefile 5# original copyright follows: 6# Copyright 2010-2011 Freescale Semiconductor, Inc. 7 8MINIMAL= 9 10ifdef CONFIG_SPL_BUILD 11ifdef CONFIG_SPL_INIT_MINIMAL 12MINIMAL=y 13endif 14endif 15 16ifdef MINIMAL 17 18obj-y += spl_minimal.o tlb.o law.o 19 20else 21ifdef CONFIG_SPL_BUILD 22obj-y += spl.o 23endif 24 25obj-y += ucp1020.o 26obj-y += ddr.o 27obj-y += law.o 28obj-y += tlb.o 29obj-y += cmd_arc.o 30 31endif 32