]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/lib/Makefile
679f19a233d74df109aebab24a9e36f9acbd3060
[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 obj-y += crt0.o
21
22 ifndef CONFIG_SPL_BUILD
23 obj-y += relocate.o
24 ifndef CONFIG_SYS_GENERIC_BOARD
25 obj-y   += board.o
26 endif
27 obj-y += sections.o
28
29 obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o
30 obj-$(CONFIG_CMD_BOOTM) += bootm.o
31 obj-$(CONFIG_SYS_L2_PL310) += cache-pl310.o
32 obj-$(CONFIG_USE_ARCH_MEMSET) += memset.o
33 obj-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o
34 else
35 obj-$(CONFIG_SPL_FRAMEWORK) += spl.o
36 endif
37
38 obj-y   += interrupts.o
39 obj-y   += reset.o
40
41 obj-y   += cache.o
42 obj-y   += cache-cp15.o
43
44 # For EABI conformant tool chains, provide eabi_compat()
45 ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS)))
46 extra-y += eabi_compat.o
47 endif