mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
13 lines
168 B
Makefile
13 lines
168 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
#
|
||
|
# Copyright 2019 Siemens AG
|
||
|
#
|
||
|
|
||
|
obj-y += board.o
|
||
|
|
||
|
ifdef CONFIG_SPL_BUILD
|
||
|
obj-y += spl.o
|
||
|
else
|
||
|
obj-y += ../common/factoryset.o
|
||
|
endif
|