]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/lib/Makefile
Merge branch 'u-boot-imx/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / lib / Makefile
1 #
2 # (C) Copyright 2002-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier:      GPL-2.0+
6 #
7
8 # Build private libgcc only when asked for
9 ifdef USE_PRIVATE_LIBGCC
10 lib-y   += _ashldi3.o
11 lib-y   += _ashrdi3.o
12 lib-y   += _divsi3.o
13 lib-y   += _lshrdi3.o
14 lib-y   += _modsi3.o
15 lib-y   += _udivsi3.o
16 lib-y   += _umodsi3.o
17 lib-y   += div0.o
18 endif
19
20 ifdef CONFIG_ARM64
21 obj-y   += crt0_64.o
22 else
23 obj-y   += crt0.o
24 endif
25
26 ifndef CONFIG_SPL_BUILD
27 ifdef CONFIG_ARM64
28 obj-y   += relocate_64.o
29 else
30 obj-y   += relocate.o
31 endif
32 ifndef CONFIG_SYS_GENERIC_BOARD
33 obj-y   += board.o
34 endif
35 obj-y   += sections.o
36
37 obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o
38 obj-$(CONFIG_CMD_BOOTM) += bootm.o
39 obj-$(CONFIG_SYS_L2_PL310) += cache-pl310.o
40 obj-$(CONFIG_USE_ARCH_MEMSET) += memset.o
41 obj-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o
42 else
43 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
44 endif
45
46 ifdef CONFIG_ARM64
47 obj-y   += interrupts_64.o
48 else
49 obj-y   += interrupts.o
50 endif
51 obj-y   += reset.o
52
53 obj-y   += cache.o
54 ifndef CONFIG_ARM64
55 obj-y   += cache-cp15.o
56 endif
57
58 # For EABI conformant tool chains, provide eabi_compat()
59 ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
60 extra-y += eabi_compat.o
61 endif