mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-18 01:03:05 +00:00
11 lines
176 B
Makefile
11 lines
176 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0+
|
||
|
#
|
||
|
# Copyright (C) 2022 StarFive Technology Co., Ltd.
|
||
|
|
||
|
ifeq ($(CONFIG_SPL_BUILD),y)
|
||
|
obj-y += spl.o
|
||
|
else
|
||
|
obj-y += cpu.o
|
||
|
obj-y += dram.o
|
||
|
endif
|