12 lines
195 B
Makefile
12 lines
195 B
Makefile
|
#
|
||
|
# Copyright (C) 2017, DENX Software Engineering
|
||
|
# Lukasz Majewski <lukma@denx.de>
|
||
|
#
|
||
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
#
|
||
|
ifdef CONFIG_SPL_BUILD
|
||
|
obj-y = spl.o
|
||
|
else
|
||
|
obj-y := display5.o
|
||
|
endif
|