aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/common/Makefile.inc
blob: aa27512a05be8a0709e73a11fb3ed30aa9e33068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 += amd_pci_util.c
ramstage-y += def_callouts.c
ramstage-y += heapmanager.c
ramstage-$(CONFIG_SPI_FLASH) += spi.c

subdirs-$(CONFIG_SOC_AMD_COMMON_BLOCK) += block

endif