xref: /openbmc/u-boot/arch/arm/cpu/armv7/sunxi/Makefile (revision cf659819)
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_SUN4I)	+= clock_sun4i.o
15obj-$(CONFIG_SUN5I)	+= clock_sun4i.o
16obj-$(CONFIG_SUN7I)	+= clock_sun4i.o
17
18ifndef CONFIG_SPL_BUILD
19obj-y	+= cpu_info.o
20endif
21
22ifdef CONFIG_SPL_BUILD
23obj-$(CONFIG_SUN4I)	+= dram.o
24obj-$(CONFIG_SUN5I)	+= dram.o
25obj-$(CONFIG_SUN7I)	+= dram.o
26ifdef CONFIG_SPL_FEL
27obj-y	+= start.o
28endif
29endif
30