mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
df13ec696e
When we switch to including all linker lists in SPL it is important to not include commands as that may lead to link errors due to other things we have already discarded. In this case change things so that we only build the right objects for SPL or non-SPL Cc: Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr> Signed-off-by: Tom Rini <trini@konsulko.com>
12 lines
254 B
Makefile
12 lines
254 B
Makefile
#
|
|
# (C) Copyright 2014 DENX Software Engineering GmbH
|
|
# Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += work_92105_spl.o
|
|
else
|
|
obj-y += work_92105.o work_92105_display.o
|
|
endif
|