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