summaryrefslogtreecommitdiff
path: root/bl1/bl1.mk
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2014-01-13 12:37:03 +0000
committerDan Handley <dan.handley@arm.com>2014-01-20 18:45:04 +0000
commit25cff83ee4300f26d5b7661ad6359525aaa36b94 (patch)
tree99eb00fe80b041dbaaf54ed8403aab6744154c59 /bl1/bl1.mk
parent5443f2be407f23a19c31564121683ddc24b982e8 (diff)
Build system: Fixes #2: Add multi-platform support
Move all explicit platform or architecture specific references into a new platform.mk file that is defined for each platform. Change-Id: I9d6320d1ba957e0cc8d9b316b3578132331fa428 Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'bl1/bl1.mk')
-rw-r--r--bl1/bl1.mk24
1 files changed, 13 insertions, 11 deletions
diff --git a/bl1/bl1.mk b/bl1/bl1.mk
index 68a7ef72..012967a9 100644
--- a/bl1/bl1.mk
+++ b/bl1/bl1.mk
@@ -28,19 +28,21 @@
# POSSIBILITY OF SUCH DAMAGE.
#
-vpath %.c drivers/arm/interconnect/cci-400/ plat/fvp \
- plat/fvp/${ARCH} drivers/arm/peripherals/pl011 common/ lib/ \
- lib/semihosting arch/aarch64/ lib/stdlib
+vpath %.c plat/${PLAT} plat/${PLAT}/${ARCH} \
+ common/ lib/ arch/${ARCH} \
+ ${PLAT_BL1_C_VPATH}
-vpath %.S arch/${ARCH}/cpu plat/common/aarch64 \
- plat/fvp/${ARCH} lib/semihosting/aarch64 \
- include/ lib/arch/aarch64
+vpath %.S arch/${ARCH}/cpu plat/common/${ARCH} \
+ plat/${PLAT}/${ARCH} \
+ include/ lib/arch/${ARCH} \
+ ${PLAT_BL1_S_VPATH}
+
+BL1_OBJS += bl1_arch_setup.o \
+ bl1_entrypoint.o \
+ early_exceptions.o \
+ bl1_main.o \
+ cpu_helpers.o
-BL1_ASM_OBJS := bl1_entrypoint.o bl1_plat_helpers.o cpu_helpers.o
-BL1_C_OBJS := bl1_main.o cci400.o bl1_plat_setup.o bl1_arch_setup.o \
- fvp_common.o fvp_helpers.o early_exceptions.o
BL1_ENTRY_POINT := reset_handler
BL1_MAPFILE := bl1.map
BL1_LINKERFILE := bl1.ld
-
-BL1_OBJS := $(BL1_C_OBJS) $(BL1_ASM_OBJS)