mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +00:00

This change introduces a few helper variables for dealing with verbose and silent build modes: `silent`, `verbose`, `q` and `s`. The `silent` and `verbose` variables are boolean values determining whether the build system has been configured to run silently or verbosely respectively (i.e. with `--silent` or `V=1`). These two modes cannot be used together - if `silent` is truthy then `verbose` is always falsy. As such: make --silent V=1 ... results in a silent build. In addition to these boolean variables, we also introduce two new variables - `s` and `q` - for use in rule recipes to conditionally suppress the output of commands. When building silently, `s` expands to a value which disables the command that follows, and `q` expands to a value which supppresses echoing of the command: $(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed but not echoed' When building verbosely, `s` expands to a value which disables the command that follows, and `q` expands to nothing: $(s)echo 'This command is neither echoed nor executed' $(q)echo 'This command is executed and echoed' In all other cases, both `s` and `q` expand to a value which suppresses echoing of the command that follows: $(s)echo 'This command is executed but not echoed' $(q)echo 'This command is executed but not echoed' The `s` variable is predominantly useful for `echo` commands, where you always want to suppress echoing of the command itself, whilst `q` is more useful for all other commands. Change-Id: I8d8ff6ed714d3cb401946c52955887ed7dca602b Signed-off-by: Chris Kay <chris.kay@arm.com>
119 lines
3 KiB
Makefile
119 lines
3 KiB
Makefile
#
|
|
# Copyright (c) 2015-2018, Renesas Electronics Corporation. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
toolchains := aarch64
|
|
|
|
include ../../../make_helpers/common.mk
|
|
include ../../../make_helpers/toolchain.mk
|
|
|
|
###################################################
|
|
# makefile
|
|
###################################################
|
|
|
|
#output file name
|
|
FILE_NAME_SA0 = bootparam_sa0
|
|
FILE_NAME_SA6 = cert_header_sa6
|
|
|
|
OUTPUT_FILE_SA0 = $(FILE_NAME_SA0).elf
|
|
OUTPUT_FILE_SA6 = $(FILE_NAME_SA6).elf
|
|
|
|
#object file name
|
|
OBJ_FILE_SA0 = sa0.o
|
|
OBJ_FILE_SA6 = sa6.o
|
|
|
|
#linker script name
|
|
MEMORY_DEF_SA0 = sa0.ld.S
|
|
MEMORY_DEF_SA6 = sa6.ld.S
|
|
|
|
###################################################
|
|
# Convenience function for adding build definitions
|
|
# $(eval $(call add_define,FOO)) will have:
|
|
# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
|
|
define add_define
|
|
DEFINES += -D$(1)$(if $(value $(1)),=$(value $(1)),)
|
|
endef
|
|
|
|
# Process RCAR_SA0_SIZE flag
|
|
ifndef RCAR_SA0_SIZE
|
|
RCAR_SA0_SIZE := 1
|
|
else
|
|
ifeq (${RCAR_SA0_SIZE},0)
|
|
RCAR_SA0_SIZE := 0
|
|
else
|
|
RCAR_SA0_SIZE := 1
|
|
endif
|
|
endif
|
|
$(eval $(call add_define,RCAR_SA0_SIZE))
|
|
|
|
# Process RCAR_SA6_TYPE flag
|
|
ifndef RCAR_SA6_TYPE
|
|
RCAR_SA6_TYPE := 0
|
|
else
|
|
ifeq (${RCAR_SA6_TYPE},0)
|
|
RCAR_SA6_TYPE := 0
|
|
else
|
|
RCAR_SA6_TYPE := 1
|
|
endif
|
|
endif
|
|
$(eval $(call add_define,RCAR_SA6_TYPE))
|
|
|
|
# Handle different VMA adjustment on D3
|
|
ifeq (${RCAR_LSI},${RCAR_D3})
|
|
RCAR_VMA_ADJUST_ADDR := 0xE6320000
|
|
else
|
|
RCAR_VMA_ADJUST_ADDR := 0xE6312000
|
|
endif
|
|
$(eval $(call add_define,RCAR_VMA_ADJUST_ADDR))
|
|
|
|
|
|
###################################################
|
|
|
|
#c compiler
|
|
CFLAGS += ${DEFINES}
|
|
CFLAGS += -I../../include/lib/stdlib
|
|
|
|
#clean
|
|
CL = rm -f
|
|
|
|
###################################################
|
|
.SUFFIXES : .s .c .o
|
|
|
|
###################################################
|
|
# command
|
|
|
|
.PHONY: all
|
|
all: $(OUTPUT_FILE_SA0) $(OUTPUT_FILE_SA6)
|
|
###################################################
|
|
# Linker
|
|
###################################################
|
|
$(OUTPUT_FILE_SA0) : $(MEMORY_DEF_SA0) $(OBJ_FILE_SA0)
|
|
$(aarch64-ld) $(OBJ_FILE_SA0) -nostdlib \
|
|
-T $(MEMORY_DEF_SA0) \
|
|
-o $(OUTPUT_FILE_SA0) \
|
|
-Wl,-Map $(FILE_NAME_SA0).map \
|
|
|
|
$(aarch64-oc) -O srec --adjust-vma=$(RCAR_VMA_ADJUST_ADDR) --srec-forceS3 $(OUTPUT_FILE_SA0) $(FILE_NAME_SA0).srec
|
|
$(aarch64-oc) -O binary --adjust-vma=$(RCAR_VMA_ADJUST_ADDR) --srec-forceS3 $(OUTPUT_FILE_SA0) $(FILE_NAME_SA0).bin
|
|
|
|
$(OUTPUT_FILE_SA6) : $(MEMORY_DEF_SA6) $(OBJ_FILE_SA6)
|
|
$(aarch64-ld) $(OBJ_FILE_SA6) -nostdlib \
|
|
-T $(MEMORY_DEF_SA6) \
|
|
-o $(OUTPUT_FILE_SA6) \
|
|
-Wl,-Map $(FILE_NAME_SA6).map \
|
|
|
|
$(aarch64-oc) -O srec --adjust-vma=$(RCAR_VMA_ADJUST_ADDR) --srec-forceS3 $(OUTPUT_FILE_SA6) $(FILE_NAME_SA6).srec
|
|
$(aarch64-oc) -O binary --adjust-vma=$(RCAR_VMA_ADJUST_ADDR) --srec-forceS3 $(OUTPUT_FILE_SA6) $(FILE_NAME_SA6).bin
|
|
|
|
###################################################
|
|
# Compile
|
|
###################################################
|
|
|
|
%.o: %.c
|
|
$(aarch64-cc) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(CL) *.bin *.map *.srec *.elf *.o
|