]> git.sur5r.net Git - u-boot/blob - arch/arm/cpu/armv7/sunxi/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
[u-boot] / arch / arm / cpu / armv7 / sunxi / Makefile
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 #
10 obj-y   += timer.o
11
12 obj-$(CONFIG_MACH_SUN6I)        += tzpc.o
13 obj-$(CONFIG_MACH_SUN8I_H3)     += tzpc.o
14
15 ifndef CONFIG_SPL_BUILD
16 ifdef CONFIG_ARMV7_PSCI
17 obj-$(CONFIG_MACH_SUN6I)        += psci_sun6i.o
18 obj-$(CONFIG_MACH_SUN7I)        += psci_sun7i.o
19 obj-$(CONFIG_MACH_SUN8I)        += psci_sun6i.o
20 endif
21 endif
22
23 ifdef CONFIG_SPL_BUILD
24 obj-y   += fel_utils.o
25 endif