aboutsummaryrefslogtreecommitdiff
path: root/bl2
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2014-01-13 14:40:13 +0000
committerDan Handley <dan.handley@arm.com>2014-01-20 18:45:04 +0000
commitd7a6b0f8ad75c517626f7e7d9bb5a91040b5a037 (patch)
treeb7b351cc6b67c6b366f79e76c01948ae54812820 /bl2
parent25cff83ee4300f26d5b7661ad6359525aaa36b94 (diff)
downloadtrusted-firmware-a-d7a6b0f8ad75c517626f7e7d9bb5a91040b5a037.tar.gz
Build system: minor spacing tidyup
Tidy up the spacing of variable definitions within the makefiles to make them more consistent, easier to read and amend. Change-Id: Ic6d7c8489ca4330824abb5cd1ead8f1d449d1a85 Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'bl2')
-rw-r--r--bl2/bl2.mk22
1 files changed, 13 insertions, 9 deletions
diff --git a/bl2/bl2.mk b/bl2/bl2.mk
index 9c43e88c23..fb47669e65 100644
--- a/bl2/bl2.mk
+++ b/bl2/bl2.mk
@@ -28,22 +28,26 @@
# POSSIBILITY OF SUCH DAMAGE.
#
-vpath %.c common/ lib/ \
- plat/${PLAT} plat/${PLAT}/${ARCH} arch/${ARCH} \
+vpath %.c common \
+ lib \
+ plat/${PLAT} \
+ plat/${PLAT}/${ARCH} \
+ arch/${ARCH} \
${PLAT_BL2_C_VPATH}
-vpath %.S lib/arch/${ARCH} \
- include lib/sync/locks/exclusive \
+vpath %.S lib/arch/${ARCH} \
+ include \
+ lib/sync/locks/exclusive \
${PLAT_BL2_S_VPATH}
-BL2_OBJS += bl2_entrypoint.o \
- bl2_arch_setup.o \
- bl2_main.o \
- spinlock.o \
+BL2_OBJS += bl2_entrypoint.o \
+ bl2_arch_setup.o \
+ bl2_main.o \
+ spinlock.o \
early_exceptions.o
BL2_ENTRY_POINT := bl2_entrypoint
BL2_MAPFILE := bl2.map
BL2_LINKERFILE := bl2.ld
-CFLAGS += $(DEFINES)
+CFLAGS += $(DEFINES)