xref: /openbmc/u-boot/arch/arm/cpu/armv7/sunxi/Makefile (revision c346e466)
1#
2# (C) Copyright 2012 Henrik Nordstrom <henrik@henriknordstrom.net>
3#
4# Based on some other Makefile
5# (C) Copyright 2000-2003
6# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7#
8# SPDX-License-Identifier:	GPL-2.0+
9#
10obj-y	+= timer.o
11obj-y	+= board.o
12obj-y	+= clock.o
13obj-y	+= pinmux.o
14obj-$(CONFIG_SUN7I)	+= clock_sun4i.o
15
16ifndef CONFIG_SPL_BUILD
17obj-y	+= cpu_info.o
18endif
19
20ifdef CONFIG_SPL_BUILD
21obj-$(CONFIG_SUN7I)	+= dram.o
22ifdef CONFIG_SPL_FEL
23obj-y	+= start.o
24endif
25endif
26