mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-05 02:51:00 +00:00
15 lines
196 B
Makefile
15 lines
196 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0
|
||
|
|
||
|
obj-y += init.o
|
||
|
obj-y += serial.o
|
||
|
|
||
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
||
|
ifeq ($(CONFIG_TPL_BUILD),y)
|
||
|
obj-y += tpl/
|
||
|
else
|
||
|
obj-y += spl/
|
||
|
endif
|
||
|
|
||
|
obj-y += sram_init.o
|
||
|
endif
|