Oleksandr G Zhadan | 8b0044f | 2015-04-29 16:57:39 -0400 | [diff] [blame] | 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 | |
| 10 | MINIMAL= |
| 11 | |
| 12 | ifdef CONFIG_SPL_BUILD |
| 13 | ifdef CONFIG_SPL_INIT_MINIMAL |
| 14 | MINIMAL=y |
| 15 | endif |
| 16 | endif |
| 17 | |
| 18 | ifdef MINIMAL |
| 19 | |
| 20 | obj-y += spl_minimal.o tlb.o law.o |
| 21 | |
| 22 | else |
| 23 | ifdef CONFIG_SPL_BUILD |
| 24 | obj-y += spl.o |
| 25 | endif |
| 26 | |
| 27 | obj-y += ucp1020.o |
| 28 | obj-y += ddr.o |
| 29 | obj-y += law.o |
| 30 | obj-y += tlb.o |
| 31 | obj-y += cmd_arc.o |
| 32 | |
| 33 | endif |