xref: /rk3399_ARM-atf/make_helpers/build_macros.mk (revision 0191262d23b922bd6e15736e8970149f5d3c52d2)
173c99d4eSJuan Castillo#
273c99d4eSJuan Castillo# Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
373c99d4eSJuan Castillo#
473c99d4eSJuan Castillo# Redistribution and use in source and binary forms, with or without
573c99d4eSJuan Castillo# modification, are permitted provided that the following conditions are met:
673c99d4eSJuan Castillo#
773c99d4eSJuan Castillo# Redistributions of source code must retain the above copyright notice, this
873c99d4eSJuan Castillo# list of conditions and the following disclaimer.
973c99d4eSJuan Castillo#
1073c99d4eSJuan Castillo# Redistributions in binary form must reproduce the above copyright notice,
1173c99d4eSJuan Castillo# this list of conditions and the following disclaimer in the documentation
1273c99d4eSJuan Castillo# and/or other materials provided with the distribution.
1373c99d4eSJuan Castillo#
1473c99d4eSJuan Castillo# Neither the name of ARM nor the names of its contributors may be used
1573c99d4eSJuan Castillo# to endorse or promote products derived from this software without specific
1673c99d4eSJuan Castillo# prior written permission.
1773c99d4eSJuan Castillo#
1873c99d4eSJuan Castillo# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1973c99d4eSJuan Castillo# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2073c99d4eSJuan Castillo# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2173c99d4eSJuan Castillo# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
2273c99d4eSJuan Castillo# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2373c99d4eSJuan Castillo# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2473c99d4eSJuan Castillo# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2573c99d4eSJuan Castillo# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2673c99d4eSJuan Castillo# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2773c99d4eSJuan Castillo# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2873c99d4eSJuan Castillo# POSSIBILITY OF SUCH DAMAGE.
2973c99d4eSJuan Castillo#
3073c99d4eSJuan Castillo
315ba8f669SYatharth Kochar# This table is used in converting lower case to upper case.
325ba8f669SYatharth Kocharuppercase_table:=a,A b,B c,C d,D e,E f,F g,G h,H i,I j,J k,K l,L m,M n,N o,O p,P q,Q r,R s,S t,T u,U v,V w,W x,X y,Y z,Z
335ba8f669SYatharth Kochar
345ba8f669SYatharth Kochar# Internal macro used for converting lower case to upper case.
355ba8f669SYatharth Kochar#   $(1) = upper case table
365ba8f669SYatharth Kochar#   $(2) = String to convert
375ba8f669SYatharth Kochardefine uppercase_internal
385ba8f669SYatharth Kochar$(if $(1),$$(subst $(firstword $(1)),$(call uppercase_internal,$(wordlist 2,$(words $(1)),$(1)),$(2))),$(2))
395ba8f669SYatharth Kocharendef
405ba8f669SYatharth Kochar
415ba8f669SYatharth Kochar# A macro for converting a string to upper case
425ba8f669SYatharth Kochar#   $(1) = String to convert
435ba8f669SYatharth Kochardefine uppercase
445ba8f669SYatharth Kochar$(eval uppercase_result:=$(call uppercase_internal,$(uppercase_table),$(1)))$(uppercase_result)
455ba8f669SYatharth Kocharendef
465ba8f669SYatharth Kochar
4773c99d4eSJuan Castillo# Convenience function for adding build definitions
4873c99d4eSJuan Castillo# $(eval $(call add_define,FOO)) will have:
4973c99d4eSJuan Castillo# -DFOO if $(FOO) is empty; -DFOO=$(FOO) otherwise
5073c99d4eSJuan Castillodefine add_define
5173c99d4eSJuan Castillo    DEFINES			+=	-D$(1)$(if $(value $(1)),=$(value $(1)),)
5273c99d4eSJuan Castilloendef
5373c99d4eSJuan Castillo
5473c99d4eSJuan Castillo# Convenience function for verifying option has a boolean value
5573c99d4eSJuan Castillo# $(eval $(call assert_boolean,FOO)) will assert FOO is 0 or 1
5673c99d4eSJuan Castillodefine assert_boolean
5773c99d4eSJuan Castillo    $(and $(patsubst 0,,$(value $(1))),$(patsubst 1,,$(value $(1))),$(error $(1) must be boolean))
5873c99d4eSJuan Castilloendef
5973c99d4eSJuan Castillo
6073c99d4eSJuan Castillo# IMG_LINKERFILE defines the linker script corresponding to a BL stage
6173c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
6273c99d4eSJuan Castillodefine IMG_LINKERFILE
6373c99d4eSJuan Castillo    ${BUILD_DIR}/bl$(1).ld
6473c99d4eSJuan Castilloendef
6573c99d4eSJuan Castillo
6673c99d4eSJuan Castillo# IMG_MAPFILE defines the output file describing the memory map corresponding
6773c99d4eSJuan Castillo# to a BL stage
6873c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
6973c99d4eSJuan Castillodefine IMG_MAPFILE
7073c99d4eSJuan Castillo    ${BUILD_DIR}/bl$(1).map
7173c99d4eSJuan Castilloendef
7273c99d4eSJuan Castillo
7373c99d4eSJuan Castillo# IMG_ELF defines the elf file corresponding to a BL stage
7473c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
7573c99d4eSJuan Castillodefine IMG_ELF
7673c99d4eSJuan Castillo    ${BUILD_DIR}/bl$(1).elf
7773c99d4eSJuan Castilloendef
7873c99d4eSJuan Castillo
7973c99d4eSJuan Castillo# IMG_DUMP defines the symbols dump file corresponding to a BL stage
8073c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
8173c99d4eSJuan Castillodefine IMG_DUMP
8273c99d4eSJuan Castillo    ${BUILD_DIR}/bl$(1).dump
8373c99d4eSJuan Castilloendef
8473c99d4eSJuan Castillo
8573c99d4eSJuan Castillo# IMG_BIN defines the default image file corresponding to a BL stage
8673c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
8773c99d4eSJuan Castillodefine IMG_BIN
8873c99d4eSJuan Castillo    ${BUILD_PLAT}/bl$(1).bin
8973c99d4eSJuan Castilloendef
9073c99d4eSJuan Castillo
9173c99d4eSJuan Castillo# FIP_ADD_PAYLOAD appends the command line arguments required by the FIP tool
9273c99d4eSJuan Castillo# to package a new payload. Optionally, it adds the dependency on this payload
9373c99d4eSJuan Castillo#   $(1) = payload filename (i.e. bl31.bin)
9473c99d4eSJuan Castillo#   $(2) = command line option for the specified payload (i.e. --bl31)
9573c99d4eSJuan Castillo#   $(3) = fip target dependency (optional) (i.e. bl31)
9673c99d4eSJuan Castillodefine FIP_ADD_PAYLOAD
9773c99d4eSJuan Castillo    $(eval FIP_ARGS += $(2) $(1))
9873c99d4eSJuan Castillo    $(eval $(if $(3),FIP_DEPS += $(3)))
9973c99d4eSJuan Castilloendef
10073c99d4eSJuan Castillo
101*0191262dSYatharth Kochar# CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
10273c99d4eSJuan Castillo#   $(1) = parameter filename
10373c99d4eSJuan Castillo#   $(2) = cert_create command line option for the specified parameter
10473c99d4eSJuan Castillo#   $(3) = input parameter (false if empty)
10573c99d4eSJuan Castillodefine CERT_ADD_CMD_OPT
10673c99d4eSJuan Castillo    $(eval $(if $(3),CRT_DEPS += $(1)))
10773c99d4eSJuan Castillo    $(eval CRT_ARGS += $(2) $(1))
10873c99d4eSJuan Castilloendef
10973c99d4eSJuan Castillo
11073c99d4eSJuan Castillo# FIP_ADD_IMG allows the platform to specify an image to be packed in the FIP
11173c99d4eSJuan Castillo# using a build option. It also adds a dependency on the image file, aborting
11273c99d4eSJuan Castillo# the build if the file does not exist.
11373c99d4eSJuan Castillo#   $(1) = build option to specify the image filename (BL30, BL33, etc)
11473c99d4eSJuan Castillo#   $(2) = command line option for the fip_create tool (bl30, bl33, etc)
11573c99d4eSJuan Castillo# Example:
11673c99d4eSJuan Castillo#   $(eval $(call FIP_ADD_IMG,BL33,--bl33))
11773c99d4eSJuan Castillodefine FIP_ADD_IMG
11873c99d4eSJuan Castillo    CRT_DEPS += check_$(1)
11973c99d4eSJuan Castillo    FIP_DEPS += check_$(1)
12073c99d4eSJuan Castillo    $(call FIP_ADD_PAYLOAD,$(value $(1)),$(2))
12173c99d4eSJuan Castillo
12273c99d4eSJuan Castillocheck_$(1):
12373c99d4eSJuan Castillo	$$(if $(value $(1)),,$$(error "Platform '${PLAT}' requires $(1). Please set $(1) to point to the right file"))
12473c99d4eSJuan Castilloendef
12573c99d4eSJuan Castillo
126*0191262dSYatharth Kochar# FWU_FIP_ADD_PAYLOAD appends the command line arguments required by the FIP tool
127*0191262dSYatharth Kochar# to package a new FWU payload. Optionally, it  adds the dependency on this payload
128*0191262dSYatharth Kochar#   $(1) = payload filename (e.g. ns_bl2u.bin)
129*0191262dSYatharth Kochar#   $(2) = command line option for the specified payload (e.g. --ns_bl2u)
130*0191262dSYatharth Kochar#   $(3) = fip target dependency (optional) (e.g. ns_bl2u)
131*0191262dSYatharth Kochardefine FWU_FIP_ADD_PAYLOAD
132*0191262dSYatharth Kochar    $(eval $(if $(3),FWU_FIP_DEPS += $(3)))
133*0191262dSYatharth Kochar    $(eval FWU_FIP_ARGS += $(2) $(1))
134*0191262dSYatharth Kocharendef
135*0191262dSYatharth Kochar
136*0191262dSYatharth Kochar# FWU_CERT_ADD_CMD_OPT adds a new command line option to the cert_create invocation
137*0191262dSYatharth Kochar#   $(1) = parameter filename
138*0191262dSYatharth Kochar#   $(2) = cert_create command line option for the specified parameter
139*0191262dSYatharth Kochar#   $(3) = input parameter (false if empty)
140*0191262dSYatharth Kochardefine FWU_CERT_ADD_CMD_OPT
141*0191262dSYatharth Kochar    $(eval $(if $(3),FWU_CRT_DEPS += $(1)))
142*0191262dSYatharth Kochar    $(eval FWU_CRT_ARGS += $(2) $(1))
143*0191262dSYatharth Kocharendef
144*0191262dSYatharth Kochar
145*0191262dSYatharth Kochar# FWU_FIP_ADD_IMG allows the platform to pack a binary image in the FWU FIP
146*0191262dSYatharth Kochar#   $(1) build option to specify the image filename (BL2U, NS_BL2U, etc)
147*0191262dSYatharth Kochar#   $(2) command line option for the fip_create tool (bl2u, ns_bl2u, etc)
148*0191262dSYatharth Kochar# Example:
149*0191262dSYatharth Kochar#   $(eval $(call FWU_FIP_ADD_IMG,BL2U,--bl2u))
150*0191262dSYatharth Kochardefine FWU_FIP_ADD_IMG
151*0191262dSYatharth Kochar    FWU_CRT_DEPS += check_$(1)
152*0191262dSYatharth Kochar    FWU_FIP_DEPS += check_$(1)
153*0191262dSYatharth Kochar    $(call FWU_FIP_ADD_PAYLOAD,$(value $(1)),$(2))
154*0191262dSYatharth Kochar
155*0191262dSYatharth Kocharcheck_$(1):
156*0191262dSYatharth Kochar	$$(if $(value $(1)),,$$(error "Platform '${PLAT}' requires $(1). Please set $(1) to point to the right file"))
157*0191262dSYatharth Kocharendef
15873c99d4eSJuan Castillo
15973c99d4eSJuan Castillo################################################################################
16073c99d4eSJuan Castillo# Auxiliary macros to build TF images from sources
16173c99d4eSJuan Castillo################################################################################
16273c99d4eSJuan Castillo
16388154678SJuan Castillo# If no goal is specified in the command line, .DEFAULT_GOAL is used.
16488154678SJuan Castillo# .DEFAULT_GOAL is defined in the main Makefile before including this file.
16588154678SJuan Castilloifeq ($(MAKECMDGOALS),)
16688154678SJuan CastilloMAKECMDGOALS := $(.DEFAULT_GOAL)
16788154678SJuan Castilloendif
16888154678SJuan Castillo
16973c99d4eSJuan Castillodefine match_goals
17073c99d4eSJuan Castillo$(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS))))
17173c99d4eSJuan Castilloendef
17273c99d4eSJuan Castillo
17373c99d4eSJuan Castillo# List of rules that involve building things
1749003fa0bSYatharth KocharBUILD_TARGETS := all bl1 bl2 bl2u bl31 bl32 certificates fip
17573c99d4eSJuan Castillo
17673c99d4eSJuan Castillo# Does the list of goals specified on the command line include a build target?
17773c99d4eSJuan Castilloifneq ($(call match_goals,${BUILD_TARGETS}),)
17873c99d4eSJuan CastilloIS_ANYTHING_TO_BUILD := 1
17973c99d4eSJuan Castilloendif
18073c99d4eSJuan Castillo
18173c99d4eSJuan Castillo
18273c99d4eSJuan Castillo# MAKE_C builds a C source file and generates the dependency file
18373c99d4eSJuan Castillo#   $(1) = output directory
18473c99d4eSJuan Castillo#   $(2) = source file (%.c)
1855ba8f669SYatharth Kochar#   $(3) = BL stage (2, 2u, 30, 31, 32, 33)
18673c99d4eSJuan Castillodefine MAKE_C
18773c99d4eSJuan Castillo
18873c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
18973c99d4eSJuan Castillo$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
1905ba8f669SYatharth Kochar$(eval IMAGE := IMAGE_BL$(call uppercase,$(3)))
19173c99d4eSJuan Castillo
19273c99d4eSJuan Castillo$(OBJ): $(2)
19373c99d4eSJuan Castillo	@echo "  CC      $$<"
1945ba8f669SYatharth Kochar	$$(Q)$$(CC) $$(CFLAGS) -D$(IMAGE) -c $$< -o $$@
19573c99d4eSJuan Castillo
19673c99d4eSJuan Castillo
19773c99d4eSJuan Castillo$(PREREQUISITES): $(2)
19873c99d4eSJuan Castillo	@echo "  DEPS    $$@"
19973c99d4eSJuan Castillo	@mkdir -p $(1)
20073c99d4eSJuan Castillo	$$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$<
20173c99d4eSJuan Castillo
20273c99d4eSJuan Castilloifdef IS_ANYTHING_TO_BUILD
20373c99d4eSJuan Castillo-include $(PREREQUISITES)
20473c99d4eSJuan Castilloendif
20573c99d4eSJuan Castillo
20673c99d4eSJuan Castilloendef
20773c99d4eSJuan Castillo
20873c99d4eSJuan Castillo
20973c99d4eSJuan Castillo# MAKE_S builds an assembly source file and generates the dependency file
21073c99d4eSJuan Castillo#   $(1) = output directory
21173c99d4eSJuan Castillo#   $(2) = assembly file (%.S)
2125ba8f669SYatharth Kochar#   $(3) = BL stage (2, 2u, 30, 31, 32, 33)
21373c99d4eSJuan Castillodefine MAKE_S
21473c99d4eSJuan Castillo
21573c99d4eSJuan Castillo$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
21673c99d4eSJuan Castillo$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
2175ba8f669SYatharth Kochar$(eval IMAGE := IMAGE_BL$(call uppercase,$(3)))
21873c99d4eSJuan Castillo
21973c99d4eSJuan Castillo$(OBJ): $(2)
22073c99d4eSJuan Castillo	@echo "  AS      $$<"
2215ba8f669SYatharth Kochar	$$(Q)$$(AS) $$(ASFLAGS) -D$(IMAGE) -c $$< -o $$@
22273c99d4eSJuan Castillo
22373c99d4eSJuan Castillo$(PREREQUISITES): $(2)
22473c99d4eSJuan Castillo	@echo "  DEPS    $$@"
22573c99d4eSJuan Castillo	@mkdir -p $(1)
22673c99d4eSJuan Castillo	$$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$<
22773c99d4eSJuan Castillo
22873c99d4eSJuan Castilloifdef IS_ANYTHING_TO_BUILD
22973c99d4eSJuan Castillo-include $(PREREQUISITES)
23073c99d4eSJuan Castilloendif
23173c99d4eSJuan Castillo
23273c99d4eSJuan Castilloendef
23373c99d4eSJuan Castillo
23473c99d4eSJuan Castillo
23573c99d4eSJuan Castillo# MAKE_LD generate the linker script using the C preprocessor
23673c99d4eSJuan Castillo#   $(1) = output linker script
23773c99d4eSJuan Castillo#   $(2) = input template
23873c99d4eSJuan Castillodefine MAKE_LD
23973c99d4eSJuan Castillo
24073c99d4eSJuan Castillo$(eval PREREQUISITES := $(1).d)
24173c99d4eSJuan Castillo
24273c99d4eSJuan Castillo$(1): $(2)
24373c99d4eSJuan Castillo	@echo "  PP      $$<"
24473c99d4eSJuan Castillo	$$(Q)$$(AS) $$(ASFLAGS) -P -E -D__LINKER__ -o $$@ $$<
24573c99d4eSJuan Castillo
24673c99d4eSJuan Castillo$(PREREQUISITES): $(2)
24773c99d4eSJuan Castillo	@echo "  DEPS    $$@"
24873c99d4eSJuan Castillo	@mkdir -p $$(dir $$@)
24973c99d4eSJuan Castillo	$$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$<
25073c99d4eSJuan Castillo
25173c99d4eSJuan Castilloifdef IS_ANYTHING_TO_BUILD
25273c99d4eSJuan Castillo-include $(PREREQUISITES)
25373c99d4eSJuan Castilloendif
25473c99d4eSJuan Castillo
25573c99d4eSJuan Castilloendef
25673c99d4eSJuan Castillo
25773c99d4eSJuan Castillo
25873c99d4eSJuan Castillo# MAKE_OBJS builds both C and assembly source files
25973c99d4eSJuan Castillo#   $(1) = output directory
26073c99d4eSJuan Castillo#   $(2) = list of source files (both C and assembly)
26173c99d4eSJuan Castillo#   $(3) = BL stage (2, 30, 31, 32, 33)
26273c99d4eSJuan Castillodefine MAKE_OBJS
26373c99d4eSJuan Castillo        $(eval C_OBJS := $(filter %.c,$(2)))
26473c99d4eSJuan Castillo        $(eval REMAIN := $(filter-out %.c,$(2)))
26573c99d4eSJuan Castillo        $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj),$(3))))
26673c99d4eSJuan Castillo
26773c99d4eSJuan Castillo        $(eval S_OBJS := $(filter %.S,$(REMAIN)))
26873c99d4eSJuan Castillo        $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
26973c99d4eSJuan Castillo        $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj),$(3))))
27073c99d4eSJuan Castillo
27173c99d4eSJuan Castillo        $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
27273c99d4eSJuan Castilloendef
27373c99d4eSJuan Castillo
27473c99d4eSJuan Castillo
27573c99d4eSJuan Castillo# NOTE: The line continuation '\' is required in the next define otherwise we
27673c99d4eSJuan Castillo# end up with a line-feed characer at the end of the last c filename.
27773c99d4eSJuan Castillo# Also bare this issue in mind if extending the list of supported filetypes.
27873c99d4eSJuan Castillodefine SOURCES_TO_OBJS
27973c99d4eSJuan Castillo        $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
28073c99d4eSJuan Castillo        $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
28173c99d4eSJuan Castilloendef
28273c99d4eSJuan Castillo
28373c99d4eSJuan Castillo
28473c99d4eSJuan Castillo# MAKE_TOOL_ARGS macro defines the command line arguments for the FIP tool for
28573c99d4eSJuan Castillo# each BL image. Arguments:
28673c99d4eSJuan Castillo#   $(1) = BL stage (2, 30, 31, 32, 33)
28773c99d4eSJuan Castillo#   $(2) = Binary file
28873c99d4eSJuan Castillo#   $(3) = In FIP (false if empty)
28973c99d4eSJuan Castillodefine MAKE_TOOL_ARGS
29073c99d4eSJuan Castillo        $(if $(3),$(eval $(call FIP_ADD_PAYLOAD,$(2),--bl$(1),bl$(1))))
29173c99d4eSJuan Castilloendef
29273c99d4eSJuan Castillo
29373c99d4eSJuan Castillo
29473c99d4eSJuan Castillo# MAKE_BL macro defines the targets and options to build each BL image.
29573c99d4eSJuan Castillo# Arguments:
2965ba8f669SYatharth Kochar#   $(1) = BL stage (2, 2u, 30, 31, 32, 33)
29773c99d4eSJuan Castillo#   $(2) = In FIP (false if empty)
29873c99d4eSJuan Castillodefine MAKE_BL
29973c99d4eSJuan Castillo        $(eval BUILD_DIR  := ${BUILD_PLAT}/bl$(1))
3005ba8f669SYatharth Kochar        $(eval BL_SOURCES := $(BL$(call uppercase,$(1))_SOURCES))
3015ba8f669SYatharth Kochar        $(eval SOURCES    := $(BL_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
30273c99d4eSJuan Castillo        $(eval OBJS       := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
30373c99d4eSJuan Castillo        $(eval LINKERFILE := $(call IMG_LINKERFILE,$(1)))
30473c99d4eSJuan Castillo        $(eval MAPFILE    := $(call IMG_MAPFILE,$(1)))
30573c99d4eSJuan Castillo        $(eval ELF        := $(call IMG_ELF,$(1)))
30673c99d4eSJuan Castillo        $(eval DUMP       := $(call IMG_DUMP,$(1)))
30773c99d4eSJuan Castillo        $(eval BIN        := $(call IMG_BIN,$(1)))
3085ba8f669SYatharth Kochar        $(eval BL_LINKERFILE := $(BL$(call uppercase,$(1))_LINKERFILE))
30973c99d4eSJuan Castillo
31073c99d4eSJuan Castillo        $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES),$(1)))
3115ba8f669SYatharth Kochar        $(eval $(call MAKE_LD,$(LINKERFILE),$(BL_LINKERFILE)))
31273c99d4eSJuan Castillo
31373c99d4eSJuan Castillo$(BUILD_DIR):
31473c99d4eSJuan Castillo	$$(Q)mkdir -p "$$@"
31573c99d4eSJuan Castillo
31673c99d4eSJuan Castillo$(ELF): $(OBJS) $(LINKERFILE)
31773c99d4eSJuan Castillo	@echo "  LD      $$@"
31873c99d4eSJuan Castillo	@echo 'const char build_message[] = "Built : "__TIME__", "__DATE__; \
31973c99d4eSJuan Castillo	       const char version_string[] = "${VERSION_STRING}";' | \
32073c99d4eSJuan Castillo		$$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o
32173c99d4eSJuan Castillo	$$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \
32273c99d4eSJuan Castillo					$(BUILD_DIR)/build_message.o $(OBJS)
32373c99d4eSJuan Castillo
32473c99d4eSJuan Castillo$(DUMP): $(ELF)
32573c99d4eSJuan Castillo	@echo "  OD      $$@"
32673c99d4eSJuan Castillo	$${Q}$${OD} -dx $$< > $$@
32773c99d4eSJuan Castillo
32873c99d4eSJuan Castillo$(BIN): $(ELF)
32973c99d4eSJuan Castillo	@echo "  BIN     $$@"
33073c99d4eSJuan Castillo	$$(Q)$$(OC) -O binary $$< $$@
33173c99d4eSJuan Castillo	@echo
33273c99d4eSJuan Castillo	@echo "Built $$@ successfully"
33373c99d4eSJuan Castillo	@echo
33473c99d4eSJuan Castillo
33573c99d4eSJuan Castillo.PHONY: bl$(1)
33673c99d4eSJuan Castillobl$(1): $(BUILD_DIR) $(BIN) $(DUMP)
33773c99d4eSJuan Castillo
33873c99d4eSJuan Castilloall: bl$(1)
33973c99d4eSJuan Castillo
34073c99d4eSJuan Castillo$(eval $(call MAKE_TOOL_ARGS,$(1),$(BIN),$(2)))
34173c99d4eSJuan Castillo
34273c99d4eSJuan Castilloendef
34373c99d4eSJuan Castillo
344