From: Tom Rini Date: Wed, 16 Mar 2016 13:56:55 +0000 (-0400) Subject: lpc32xx: work_92105: Rework Makefile X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=df13ec696ef61ed575950e4e071d220711afbe4e;p=project%2Fbcm63xx%2Fu-boot.git lpc32xx: work_92105: Rework Makefile 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) Signed-off-by: Tom Rini --- diff --git a/board/work-microwave/work_92105/Makefile b/board/work-microwave/work_92105/Makefile index ba31c8e4f4..e26c6737ee 100644 --- a/board/work-microwave/work_92105/Makefile +++ b/board/work-microwave/work_92105/Makefile @@ -5,6 +5,8 @@ # SPDX-License-Identifier: GPL-2.0+ # -obj-y := work_92105.o work_92105_display.o - -obj-$(CONFIG_SPL_BUILD) += work_92105_spl.o +ifdef CONFIG_SPL_BUILD +obj-y += work_92105_spl.o +else +obj-y += work_92105.o work_92105_display.o +endif