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>
115 lines
3.5 KiB
Makefile
115 lines
3.5 KiB
Makefile
#
|
|
# Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
toolchains := rk3399-m0
|
|
|
|
include ../../../../../make_helpers/common.mk
|
|
include ../../../../../make_helpers/toolchain.mk
|
|
|
|
# Cross Compile
|
|
M0_CROSS_COMPILE ?= arm-none-eabi-
|
|
|
|
# Build architecture
|
|
ARCH := cortex-m0
|
|
|
|
# Build platform
|
|
PLAT_M0 ?= rk3399m0
|
|
PLAT_M0_PMU ?= rk3399m0pmu
|
|
|
|
.SUFFIXES:
|
|
|
|
INCLUDES += -Iinclude/ \
|
|
-I../../include/shared/
|
|
|
|
# NOTE: Add C source files here
|
|
C_SOURCES_COMMON := src/startup.c
|
|
C_SOURCES := src/dram.c \
|
|
src/stopwatch.c
|
|
C_SOURCES_PMU := src/suspend.c
|
|
|
|
# Flags definition
|
|
COMMON_FLAGS := -g -mcpu=$(ARCH) -mthumb -Wall -O3 -nostdlib -mfloat-abi=soft
|
|
CFLAGS := -ffunction-sections -fdata-sections -fomit-frame-pointer -fno-common
|
|
ASFLAGS := -Wa,--gdwarf-2
|
|
LDFLAGS := -Wl,--gc-sections -Wl,--build-id=none
|
|
|
|
# NOTE: The line continuation '\' is required in the next define otherwise we
|
|
# end up with a line-feed characer at the end of the last c filename.
|
|
# Also bare this issue in mind if extending the list of supported filetypes.
|
|
define SOURCES_TO_OBJS
|
|
$(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
|
|
$(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
|
|
endef
|
|
|
|
SOURCES_COMMON := $(C_SOURCES_COMMON)
|
|
SOURCES := $(C_SOURCES)
|
|
SOURCES_PMU := $(C_SOURCES_PMU)
|
|
OBJS_COMMON := $(addprefix $(BUILD)/,$(call SOURCES_TO_OBJS,$(SOURCES_COMMON)))
|
|
OBJS := $(addprefix $(BUILD)/,$(call SOURCES_TO_OBJS,$(SOURCES)))
|
|
OBJS_PMU := $(addprefix $(BUILD)/,$(call SOURCES_TO_OBJS,$(SOURCES_PMU)))
|
|
LINKERFILE := $(BUILD)/$(PLAT_M0).ld
|
|
MAPFILE := $(BUILD)/$(PLAT_M0).map
|
|
MAPFILE_PMU := $(BUILD)/$(PLAT_M0_PMU).map
|
|
ELF := $(BUILD)/$(PLAT_M0).elf
|
|
ELF_PMU := $(BUILD)/$(PLAT_M0_PMU).elf
|
|
BIN := $(BUILD)/$(PLAT_M0).bin
|
|
BIN_PMU := $(BUILD)/$(PLAT_M0_PMU).bin
|
|
LINKERFILE_SRC := src/$(PLAT_M0).ld.S
|
|
|
|
# Function definition related compilation
|
|
define MAKE_C
|
|
$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
|
|
-include $(patsubst %.o,%.d,$(OBJ))
|
|
|
|
$(OBJ) : $(2)
|
|
$(s)echo " CC $$<"
|
|
$$(q)$(rk3399-m0-cc) $$(COMMON_FLAGS) $$(CFLAGS) $$(INCLUDES) -MMD -MT $$@ -c $$< -o $$@
|
|
endef
|
|
|
|
define MAKE_S
|
|
$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
|
|
|
|
$(OBJ) : $(2)
|
|
$(s)echo " AS $$<"
|
|
$$(q)$(rk3399-m0-cc) -x assembler-with-cpp $$(COMMON_FLAGS) $$(ASFLAGS) -c $$< -o $$@
|
|
endef
|
|
|
|
define MAKE_OBJS
|
|
$(eval C_OBJS := $(filter %.c,$(2)))
|
|
$(eval REMAIN := $(filter-out %.c,$(2)))
|
|
$(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
|
|
|
|
$(eval S_OBJS := $(filter %.S,$(REMAIN)))
|
|
$(eval REMAIN := $(filter-out %.S,$(REMAIN)))
|
|
$(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
|
|
|
|
$(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
|
|
endef
|
|
|
|
.PHONY: all
|
|
all: $(BIN) $(BIN_PMU)
|
|
|
|
.DEFAULT_GOAL := all
|
|
|
|
$(LINKERFILE): $(LINKERFILE_SRC)
|
|
$(rk3399-m0-cc) $(COMMON_FLAGS) $(INCLUDES) -P -E -D__LINKER__ -MMD -MF $@.d -MT $@ -o $@ $<
|
|
-include $(LINKERFILE).d
|
|
|
|
$(ELF) : $(OBJS) $(OBJS_COMMON) $(LINKERFILE)
|
|
$(s)echo " LD $@"
|
|
$(q)$(rk3399-m0-cc) -o $@ $(COMMON_FLAGS) $(LDFLAGS) -Wl,-Map=$(MAPFILE) -Wl,-T$(LINKERFILE) $(OBJS) $(OBJS_COMMON)
|
|
|
|
%.bin : %.elf
|
|
$(s)echo " BIN $@"
|
|
$(q)$(rk3399-m0-oc) -O binary $< $@
|
|
|
|
$(ELF_PMU) : $(OBJS_COMMON) $(OBJS_PMU) $(LINKERFILE)
|
|
$(s)echo " LD $@"
|
|
$(q)$(rk3399-m0-cc) -o $@ $(COMMON_FLAGS) $(LDFLAGS) -Wl,-Map=$(MAPFILE_PMU) -Wl,-T$(LINKERFILE) $(OBJS_PMU) $(OBJS_COMMON)
|
|
|
|
$(eval $(call MAKE_OBJS,$(BUILD),$(SOURCES_COMMON),$(1)))
|
|
$(eval $(call MAKE_OBJS,$(BUILD),$(SOURCES),$(1)))
|
|
$(eval $(call MAKE_OBJS,$(BUILD),$(SOURCES_PMU),$(1)))
|