1# SPDX-License-Identifier: GPL-2.0 2 3obj-y += init.o 4obj-y += serial.o 5 6ifeq ($(CONFIG_SPL_BUILD),y) 7ifeq ($(CONFIG_TPL_BUILD),y) 8obj-y += tpl/ 9else 10obj-y += spl/ 11endif 12 13obj-y += sram_init.o 14endif 15