summaryrefslogtreecommitdiffstats
path: root/src/arch/arm/libgcc/Makefile.inc
blob: b64a5fa1e8df81ff22e5fa4879a17d275f1bf552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
################################################################################
##
## SPDX-License-Identifier: GPL-2.0-only
## This file is part of the coreboot project.
##
################################################################################

libgcc_files = ashldi3.S lib1funcs.S lshrdi3.S muldi3.S ucmpdi2.S uldivmod.S
libgcc_files += udivmoddi4.c umoddi3.c

ifeq ($(CONFIG_ARCH_BOOTBLOCK_ARM),y)
decompressor-y += $(libgcc_files)
bootblock-y += $(libgcc_files)
endif

ifeq ($(CONFIG_ARCH_VERSTAGE_ARM),y)
verstage-y += $(libgcc_files)
endif

ifeq ($(CONFIG_ARCH_ROMSTAGE_ARM),y)
romstage-y += $(libgcc_files)
endif

ifeq ($(CONFIG_ARCH_RAMSTAGE_ARM),y)
ramstage-y += $(libgcc_files)
endif