From 0047cb63e905a83006d0b8a09218d028c1ca6f1a Mon Sep 17 00:00:00 2001 From: Jerome Forissier Date: Mon, 1 Sep 2014 13:41:48 +0200 Subject: Cosmetic fixes for build output By default, the OP-TEE build shows abbreviated output similar to the Linux kernel. This commit fixes a number of deviations/inconsistencies. - Always print a command in uppercase, followed by the target file. - Make sure commands and file paths are nicely aligned, with two leading spaces to make command output/errors better stand out. - Remove some duplicate slashes in file paths. We use the following rule: variables that hold directory names such as $(arch-dir) or $(platform-dir) always have a trailing slash. The 'subdirs' and 'incdirs' variables used in sub-makefiles are an exception because doing otherwise would needlessly clutter the sub-makefiles. --- core/core.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/core.mk') diff --git a/core/core.mk b/core/core.mk index 6a6ba5df..200f1ef4 100644 --- a/core/core.mk +++ b/core/core.mk @@ -4,9 +4,9 @@ include mk/cleanvars.mk sm := core sm-$(sm) := y -arch-dir := core/arch/$(ARCH) -platform-dir := $(arch-dir)/plat-$(PLATFORM) -include $(platform-dir)/conf.mk +arch-dir := core/arch/$(ARCH)/ +platform-dir := $(arch-dir)plat-$(PLATFORM)/ +include $(platform-dir)conf.mk PLATFORM_FLAVOR ?= default platform_$(PLATFORM) := y @@ -51,6 +51,6 @@ include mk/lib.mk subdirs = $(core-platform-subdirs) core include mk/subdir.mk include mk/compile.mk -include $(platform-dir)/link.mk +include $(platform-dir)link.mk -- cgit v1.2.3