aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/Makefile.inc
blob: b485bb347942c7dd15da6480ad2f22beac468ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ifeq ($(CONFIG_SOC_AMD_COMMON),y)

CPPFLAGS_common += -I$(src)/soc/amd/common

bootblock-y += agesawrapper.c
bootblock-y += def_callouts.c
bootblock-y += heapmanager.c

romstage-y += agesawrapper.c
romstage-y += def_callouts.c
romstage-y += heapmanager.c

ramstage-y += agesawrapper.c
ramstage-y += amd_late_init.c
ramstage-y += def_callouts.c
ramstage-y += heapmanager.c

subdirs-$(CONFIG_SOC_AMD_COMMON_BLOCK) += block

endif