summaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
parent25cff83ee4300f26d5b7661ad6359525aaa36b94 (diff)
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 'Makefile')
-rw-r--r--Makefile22
1 files changed, 16 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index ee778e9c..71be3132 100644
--- a/Makefile
+++ b/Makefile
@@ -50,8 +50,13 @@ else
BUILD_TYPE := release
endif
-BL_COMMON_OBJS := misc_helpers.o cache_helpers.o tlb_helpers.o \
- std.o bl_common.o platform_helpers.o
+BL_COMMON_OBJS := misc_helpers.o \
+ cache_helpers.o \
+ tlb_helpers.o \
+ std.o \
+ bl_common.o \
+ platform_helpers.o
+
ARCH ?= aarch64
# By default, build all platforms available
@@ -109,10 +114,15 @@ BL1_LINKERFILE := $(addprefix ${BUILD_BL1}/,${BL1_LINKERFILE})
BL2_LINKERFILE := $(addprefix ${BUILD_BL2}/,${BL2_LINKERFILE})
BL31_LINKERFILE := $(addprefix ${BUILD_BL31}/,${BL31_LINKERFILE})
-INCLUDES += -Ilib/include/ -Iinclude/${ARCH}/ -Iinclude/ \
- -Iarch/system/gic -Icommon/psci \
- -Iinclude/stdlib -Iinclude/stdlib/sys \
- -Iplat/${PLAT} ${PLAT_INCLUDES}
+INCLUDES += -Ilib/include/ \
+ -Iinclude/${ARCH}/ \
+ -Iinclude/ \
+ -Iarch/system/gic \
+ -Icommon/psci \
+ -Iinclude/stdlib \
+ -Iinclude/stdlib/sys \
+ -Iplat/${PLAT} \
+ ${PLAT_INCLUDES}
ASFLAGS += -nostdinc -ffreestanding -Wa,--fatal-warnings \
-mgeneral-regs-only -D__ASSEMBLY__ ${INCLUDES}