1# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright (C) 2020 SiFive, Inc
4# Pragnesh Patel <pragnesh.patel@sifive.com>
5
6ifeq ($(CONFIG_SPL_BUILD),y)
7obj-y += spl.o
8else
9obj-y += dram.o
10obj-y += cpu.o
11obj-y += cache.o
12endif
13