xref: /rk3399_rockchip-uboot/arch/arm/mach-mvebu/Makefile (revision c9bb942e2f91d9f8e5f25ed1961eba2d64f65b8d)
1#
2# Copyright (C) 2014-2015 Stefan Roese <sr@denx.de>
3#
4# SPDX-License-Identifier:	GPL-2.0+
5#
6
7ifdef CONFIG_KIRKWOOD
8
9obj-y	= dram.o
10obj-y	+= gpio.o
11obj-y	+= timer.o
12
13else
14
15obj-y	= cpu.o
16obj-y	+= dram.o
17obj-y	+= gpio.o
18obj-y	+= mbus.o
19obj-y	+= timer.o
20obj-$(CONFIG_SPL_BUILD) += spl.o
21obj-$(CONFIG_SPL_BUILD) += lowlevel_spl.o
22
23obj-y	+= serdes/
24endif
25