mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-11 20:46:00 +01:00
The mccmon6 has been used a "mixed" approach between SPL and U-Boot proper sources. This commit decoupes SPL and u-boot proper, which allows clear distinction between those two code bases and facilitates conversion to DM/DTS on this particular board. Signed-off-by: Lukasz Majewski <lukma@denx.de>
10 lines
194 B
Makefile
10 lines
194 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2016-2017
|
|
# Lukasz Majewski, DENX Software Engineering, lukma@denx.de
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y := spl.o
|
|
else
|
|
obj-y := mccmon6.o
|
|
endif
|