Commit 569a5db9 authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

juno: Remove vpath usage in platform makefile

As per commit bee82417, remove all usage of the vpath keyword
in makefiles. Specify the relative paths to source files instead.

Also reorder source files in makefiles alphabetically.

Change-Id: Ic85c396f34e7a25a7239533f12bde3eed8da0ca2
parent b01f49b5
...@@ -28,63 +28,45 @@ ...@@ -28,63 +28,45 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
# #
PLAT_INCLUDES := -Idrivers/arm/interconnect/cci-400 \ #
-Idrivers/console \ # No additional platform system include directories required
-Idrivers/arm/trustzone/tzc-400 \ #
-Idrivers/arm/peripherals/pl011 # PLAT_INCLUDES :=
PLAT_BL1_C_VPATH := drivers/arm/interconnect/cci-400 \
drivers/arm/peripherals/pl011 \
lib/arch/${ARCH} \
lib/stdlib \
drivers/io
PLAT_BL2_C_VPATH := drivers/arm/interconnect/cci-400 \
drivers/arm/peripherals/pl011 \
lib/arch/${ARCH} \
lib/stdlib \
drivers/io
PLAT_BL31_C_VPATH := drivers/arm/interconnect/cci-400 \
drivers/arm/peripherals/pl011 \
lib/arch/${ARCH} \
lib/stdlib \
drivers/io
PLAT_BL_COMMON_SOURCES := mmio.c \ PLAT_BL_COMMON_SOURCES := drivers/arm/pl011/pl011_console.c \
pl011_console.c \ drivers/arm/pl011/pl011.c \
pl011.c \ drivers/io/io_fip.c \
sysreg_helpers.S \ drivers/ioio_memmap.c \
plat_io_storage.c \ lib/mmio.c \
io_fip.c \ lib/aarch64/xlat_tables.c \
io_memmap.c \ lib/aarch64/sysreg_helpers.S \
xlat_tables.c plat/juno/plat_io_storage.c
BL1_SOURCES += bl1_plat_setup.c \ BL1_SOURCES += drivers/arm/cci400/cci400.c \
bl1_plat_helpers.S \ plat/common/aarch64/platform_up_stack.S \
plat_helpers.S \ plat/juno/bl1_plat_setup.c \
platform_up_stack.S \ plat/juno/aarch64/bl1_plat_helpers.S \
plat_common.c \ plat/juno/aarch64/plat_helpers.S \
cci400.c plat/juno/aarch64/plat_common.c
BL2_SOURCES += bakery_lock.c \ BL2_SOURCES += lib/locks/bakery/bakery_lock.c \
bl2_plat_setup.c \ plat/common/aarch64/platform_up_stack.S \
platform_up_stack.S \ plat/juno/bl2_plat_setup.c \
mhu.c \ plat/juno/mhu.c \
plat_helpers.S \ plat/juno/aarch64/plat_helpers.S \
plat_common.c \ plat/juno/aarch64/plat_common.c \
scp_bootloader.c \ plat/juno/scp_bootloader.c \
scpi.c plat/juno/scpi.c
BL31_SOURCES += bl31_plat_setup.c \ BL31_SOURCES += drivers/arm/cci400/cci400.c \
mhu.c \ drivers/arm/gic/gic_v2.c \
plat_helpers.S \ plat/common/aarch64/platform_mp_stack.S \
platform_mp_stack.S \ plat/juno/bl31_plat_setup.c \
plat_common.c \ plat/juno/mhu.c \
plat_pm.c \ plat/juno/aarch64/plat_helpers.S \
plat_topology.c \ plat/juno/aarch64/plat_common.c \
plat_gic.c \ plat/juno/plat_pm.c \
scpi.c \ plat/juno/plat_topology.c \
smc_arm.c \ plat/juno/plat_gic.c \
cci400.c \ plat/juno/scpi.c \
gic_v2.c plat/juno/smc_arm.c
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment