blob: 9071c83199276834d2e888196013a9b06533be20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: GPL-2.0+
#
# Copyright (C) 2020-2021 SiFive, Inc
# Pragnesh Patel <[email protected]>
ifeq ($(CONFIG_XPL_BUILD),y)
obj-y += spl.o
else
obj-y += dram.o
obj-y += cpu.o
endif
|