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 8 MINIMAL= 9 10 ifdef CONFIG_SPL_BUILD 11 ifdef CONFIG_SPL_INIT_MINIMAL 12 MINIMAL=y 13 endif 14 endif 15 16 ifdef MINIMAL 17 18 obj-y += spl_minimal.o tlb.o law.o 19 20 else 21 ifdef CONFIG_SPL_BUILD 22 obj-y += spl.o 23 endif 24 25 obj-y += ucp1020.o 26 obj-y += ddr.o 27 obj-y += law.o 28 obj-y += tlb.o 29 obj-y += cmd_arc.o 30 31 endif 32