blob: 3aee9b913e4460db4c0a739d09e14bf768650385 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001#
Dan Handleye83b0ca2014-01-14 18:17:09 +00002# Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are met:
6#
7# Redistributions of source code must retain the above copyright notice, this
8# list of conditions and the following disclaimer.
9#
10# Redistributions in binary form must reproduce the above copyright notice,
11# this list of conditions and the following disclaimer in the documentation
12# and/or other materials provided with the distribution.
13#
14# Neither the name of ARM nor the names of its contributors may be used
15# to endorse or promote products derived from this software without specific
16# prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31# Decrease the verbosity of the make script
32# can be made verbose by passing V=1 at the make command line
33ifdef V
James Morrisseyeaaeece2013-11-01 13:56:59 +000034 KBUILD_VERBOSE = ${V}
Achin Gupta4f6ad662013-10-25 09:08:21 +010035else
36 KBUILD_VERBOSE = 0
37endif
38
Achin Gupta7421b462014-02-01 18:53:26 +000039# Checkpatch ignores
40CHECK_IGNORE = --ignore COMPLEX_MACRO
41
42CHECKPATCH_ARGS = --no-tree --no-signoff ${CHECK_IGNORE}
43CHECKCODE_ARGS = --no-patch --no-tree --no-signoff ${CHECK_IGNORE}
Ian Spray36eaaf32014-01-30 17:25:28 +000044
James Morrisseyeaaeece2013-11-01 13:56:59 +000045ifeq "${KBUILD_VERBOSE}" "0"
Achin Gupta4f6ad662013-10-25 09:08:21 +010046 Q=@
Ian Spray36eaaf32014-01-30 17:25:28 +000047 CHECKCODE_ARGS += --no-summary --terse
Achin Gupta4f6ad662013-10-25 09:08:21 +010048else
49 Q=
50endif
51
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +000052export Q
53
Achin Gupta4f6ad662013-10-25 09:08:21 +010054DEBUG ?= 0
James Morrisseyeaaeece2013-11-01 13:56:59 +000055
56ifneq (${DEBUG}, 0)
57 BUILD_TYPE := debug
58else
59 BUILD_TYPE := release
60endif
61
Jon Medhurst407a95c2014-02-12 15:54:48 +000062BL_COMMON_SOURCES := misc_helpers.S \
63 cache_helpers.S \
64 tlb_helpers.S \
65 xlat_helpers.c \
66 std.c \
67 bl_common.c \
68 platform_helpers.S \
69 io_storage.c
Ryan Harkind7a6b0f2014-01-13 14:40:13 +000070
Ryan Harkin25cff832014-01-13 12:37:03 +000071ARCH ?= aarch64
Achin Gupta4f6ad662013-10-25 09:08:21 +010072
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +000073# By default, build fvp platform
74DEFAULT_PLAT := fvp
75PLAT ?= ${DEFAULT_PLAT}
Achin Gupta375f5382014-02-18 18:12:48 +000076# By default, build no SPD component
77SPD ?= none
Achin Gupta4f6ad662013-10-25 09:08:21 +010078
Ryan Harkin25cff832014-01-13 12:37:03 +000079BUILD_BASE := ./build
80BUILD_PLAT := ${BUILD_BASE}/${PLAT}/${BUILD_TYPE}
Achin Gupta4f6ad662013-10-25 09:08:21 +010081
Ryan Harkin25cff832014-01-13 12:37:03 +000082PLATFORMS := $(shell ls -I common plat/)
Achin Gupta375f5382014-02-18 18:12:48 +000083SPDS := $(shell ls -I none services/spd)
Ryan Harkin72ee3312014-01-15 16:55:07 +000084HELP_PLATFORMS := $(shell echo ${PLATFORMS} | sed 's/ /|/g')
85
Ryan Harkin25cff832014-01-13 12:37:03 +000086ifeq (${PLAT},)
87 $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform.")
88endif
Jon Medhurst66573cb2014-02-13 15:19:28 +000089ifeq ($(findstring ${PLAT},${PLATFORMS}),)
Ryan Harkin25cff832014-01-13 12:37:03 +000090 $(error "Error: Invalid platform. The following platforms are available: ${PLATFORMS}")
91endif
92
Jon Medhurst66573cb2014-02-13 15:19:28 +000093all: msg_start
Achin Gupta4f6ad662013-10-25 09:08:21 +010094
Ryan Harkin25cff832014-01-13 12:37:03 +000095msg_start:
96 @echo "Building ${PLAT}"
Achin Gupta4f6ad662013-10-25 09:08:21 +010097
Jon Medhurst66573cb2014-02-13 15:19:28 +000098include plat/${PLAT}/platform.mk
99
100ifdef BL1_SOURCES
101NEED_BL1 := yes
102include bl1/bl1.mk
103endif
104
105ifdef BL2_SOURCES
106NEED_BL2 := yes
107include bl2/bl2.mk
108endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100109
Jon Medhurst66573cb2014-02-13 15:19:28 +0000110ifdef BL31_SOURCES
111NEED_BL31 := yes
112include bl31/bl31.mk
Ryan Harkin25cff832014-01-13 12:37:03 +0000113endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114
Achin Gupta375f5382014-02-18 18:12:48 +0000115# Include SPD Makefile if one has been specified
116ifneq (${SPD},none)
117 # We expect to locate an spd.mk under the specified SPD directory
118 SPD_MAKE := $(shell m="services/spd/${SPD}/${SPD}.mk"; [ -f "$$m" ] && echo "$$m")
119
120 ifeq (${SPD_MAKE},)
121 $(error Error: No services/spd/${SPD}/${SPD}.mk located)
122 endif
123 $(info Including ${SPD_MAKE})
124 include ${SPD_MAKE}
125
126 # If there's BL32 companion for the chosen SPD, and the SPD wants to build the
127 # BL2 from source, we expect that the SPD's Makefile would set NEED_BL32
128 # variable to "yes"
129endif
130
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +0000131.PHONY: all msg_start clean realclean distclean cscope locate-checkpatch checkcodebase checkpatch fiptool fip
James Morrisseyeaaeece2013-11-01 13:56:59 +0000132.SUFFIXES:
133
134
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000135INCLUDES += -Ilib/include/ \
James Morrisseyf2f9bb52014-02-10 16:18:59 +0000136 -Idrivers/io \
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000137 -Iinclude/${ARCH}/ \
138 -Iinclude/ \
139 -Iarch/system/gic \
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000140 -Iservices/std_svc/psci \
Ryan Harkind7a6b0f2014-01-13 14:40:13 +0000141 -Iinclude/stdlib \
142 -Iinclude/stdlib/sys \
143 -Iplat/${PLAT} \
Achin Gupta375f5382014-02-18 18:12:48 +0000144 ${PLAT_INCLUDES} \
145 ${SPD_INCLUDES}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100146
Harry Liebel0af6d642013-12-20 18:51:12 +0000147ASFLAGS += -nostdinc -ffreestanding -Wa,--fatal-warnings \
Sandrine Bailleuxdf64a552014-02-11 13:31:33 +0000148 -mgeneral-regs-only -D__ASSEMBLY__ ${INCLUDES} \
149 -DDEBUG=${DEBUG}
Harry Liebel4f603682014-01-14 18:11:48 +0000150CFLAGS := -nostdinc -pedantic -ffreestanding -Wall \
151 -Werror -mgeneral-regs-only -std=c99 -c -Os \
152 -DDEBUG=${DEBUG} ${INCLUDES} ${CFLAGS}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153
Sandrine Bailleux3e850a82013-11-20 11:50:48 +0000154LDFLAGS += --fatal-warnings -O1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100155
156
157vpath %.ld.S bl1:bl2:bl31
158vpath %.c bl1:bl2:bl31
159vpath %.c bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH}
160vpath %.S bl1/${ARCH}:bl2/${ARCH}:bl31/${ARCH}
Jon Medhurst66573cb2014-02-13 15:19:28 +0000161vpath %.c lib/arch/${ARCH} # One of the missing paths needed for BL_COMMON_SOURCES
Achin Gupta4f6ad662013-10-25 09:08:21 +0100162
163
James Morrisseyeaaeece2013-11-01 13:56:59 +0000164ifneq (${DEBUG}, 0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100165#CFLAGS += -g -O0
166CFLAGS += -g
167# -save-temps -fverbose-asm
168ASFLAGS += -g -Wa,--gdwarf-2
James Morrissey40a6f642014-02-10 14:24:36 +0000169else
170CFLAGS += -DNDEBUG=1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100171endif
172
173
James Morrisseyeaaeece2013-11-01 13:56:59 +0000174CC := ${CROSS_COMPILE}gcc
175CPP := ${CROSS_COMPILE}cpp
176AS := ${CROSS_COMPILE}gcc
177AR := ${CROSS_COMPILE}ar
178LD := ${CROSS_COMPILE}ld
179OC := ${CROSS_COMPILE}objcopy
180OD := ${CROSS_COMPILE}objdump
181NM := ${CROSS_COMPILE}nm
182PP := ${CROSS_COMPILE}gcc -E ${CFLAGS}
Achin Gupta4f6ad662013-10-25 09:08:21 +0100183
Ian Spray36eaaf32014-01-30 17:25:28 +0000184BASE_COMMIT ?= origin/master
185
Harry Liebelf58ad362014-01-10 18:00:33 +0000186# Variables for use with Firmware Image Package
187FIPTOOLPATH ?= tools/fip_create
Achin Gupta375f5382014-02-18 18:12:48 +0000188FIPTOOL ?= ${FIPTOOLPATH}/fip_create
Harry Liebelf58ad362014-01-10 18:00:33 +0000189fiptool: ${FIPTOOL}
190fip: ${BUILD_PLAT}/fip.bin
191
Ian Spray36eaaf32014-01-30 17:25:28 +0000192locate-checkpatch:
193ifndef CHECKPATCH
194 $(error "Please set CHECKPATCH to point to the Linux checkpatch.pl file, eg: CHECKPATCH=../linux/script/checkpatch.pl")
195else
196ifeq (,$(wildcard ${CHECKPATCH}))
197 $(error "The file CHECKPATCH points to cannot be found, use eg: CHECKPATCH=../linux/script/checkpatch.pl")
198endif
199endif
200
Achin Gupta4f6ad662013-10-25 09:08:21 +0100201clean:
202 @echo " CLEAN"
Ryan Harkin25cff832014-01-13 12:37:03 +0000203 ${Q}rm -rf ${BUILD_PLAT}
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000204 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +0100205
James Morrisseyeaaeece2013-11-01 13:56:59 +0000206realclean distclean:
207 @echo " REALCLEAN"
208 ${Q}rm -rf ${BUILD_BASE}
Joakim Bech35fab8c2014-01-23 14:51:49 +0100209 ${Q}rm -f ${CURDIR}/cscope.*
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000210 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH} clean
Achin Gupta4f6ad662013-10-25 09:08:21 +0100211
Ian Spray36eaaf32014-01-30 17:25:28 +0000212checkcodebase: locate-checkpatch
213 @echo " CHECKING STYLE"
214 @if test -d .git ; then \
215 git ls-files | while read GIT_FILE ; do ${CHECKPATCH} ${CHECKCODE_ARGS} -f $$GIT_FILE ; done ; \
216 else \
217 find . -type f -not -iwholename "*.git*" -not -iwholename "*build*" -exec ${CHECKPATCH} ${CHECKCODE_ARGS} -f {} \; ; \
218 fi
219
220checkpatch: locate-checkpatch
221 @echo " CHECKING STYLE"
222 @git format-patch --stdout ${BASE_COMMIT} | ${CHECKPATCH} ${CHECKPATCH_ARGS} - || true
223
Harry Liebelf58ad362014-01-10 18:00:33 +0000224${FIPTOOL}:
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000225 ${Q}${MAKE} --no-print-directory -C ${FIPTOOLPATH}
Harry Liebelf58ad362014-01-10 18:00:33 +0000226 @echo
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000227 @echo "Built $@ successfully"
Harry Liebelf58ad362014-01-10 18:00:33 +0000228 @echo
229
Jon Medhurst407a95c2014-02-12 15:54:48 +0000230define match_goals
231$(strip $(foreach goal,$(1),$(filter $(goal),$(MAKECMDGOALS))))
232endef
Achin Gupta4f6ad662013-10-25 09:08:21 +0100233
James Morrisseyeaaeece2013-11-01 13:56:59 +0000234
Jon Medhurst407a95c2014-02-12 15:54:48 +0000235CLEANING := $(call match_goals,clean realclean distclean)
James Morrisseyeaaeece2013-11-01 13:56:59 +0000236
James Morrisseyeaaeece2013-11-01 13:56:59 +0000237
Jon Medhurst407a95c2014-02-12 15:54:48 +0000238define MAKE_C
James Morrisseyeaaeece2013-11-01 13:56:59 +0000239
Jon Medhurst407a95c2014-02-12 15:54:48 +0000240$(eval OBJ := $(1)/$(patsubst %.c,%.o,$(notdir $(2))))
241$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
James Morrisseyeaaeece2013-11-01 13:56:59 +0000242
Jon Medhurst407a95c2014-02-12 15:54:48 +0000243$(OBJ) : $(2)
244 @echo " CC $$<"
245 $$(Q)$$(CC) $$(CFLAGS) -c $$< -o $$@
Achin Gupta4f6ad662013-10-25 09:08:21 +0100246
James Morrisseyeaaeece2013-11-01 13:56:59 +0000247
Jon Medhurst407a95c2014-02-12 15:54:48 +0000248$(PREREQUISITES) : $(2)
249 @echo " DEPS $$@"
250 @mkdir -p $(1)
251 $$(Q)$$(CC) $$(CFLAGS) -M -MT $(OBJ) -MF $$@ $$<
James Morrisseyeaaeece2013-11-01 13:56:59 +0000252
Jon Medhurst407a95c2014-02-12 15:54:48 +0000253ifeq "$(CLEANING)" ""
254-include $(PREREQUISITES)
255endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100256
Jon Medhurst407a95c2014-02-12 15:54:48 +0000257endef
Achin Gupta4f6ad662013-10-25 09:08:21 +0100258
259
Jon Medhurst407a95c2014-02-12 15:54:48 +0000260define MAKE_S
James Morrisseyeaaeece2013-11-01 13:56:59 +0000261
Jon Medhurst407a95c2014-02-12 15:54:48 +0000262$(eval OBJ := $(1)/$(patsubst %.S,%.o,$(notdir $(2))))
263$(eval PREREQUISITES := $(patsubst %.o,%.d,$(OBJ)))
Achin Gupta4f6ad662013-10-25 09:08:21 +0100264
Jon Medhurst407a95c2014-02-12 15:54:48 +0000265$(OBJ) : $(2)
266 @echo " AS $$<"
267 $$(Q)$$(AS) $$(ASFLAGS) -c $$< -o $$@
James Morrisseyeaaeece2013-11-01 13:56:59 +0000268
Jon Medhurst407a95c2014-02-12 15:54:48 +0000269$(PREREQUISITES) : $(2)
270 @echo " DEPS $$@"
271 @mkdir -p $(1)
272 $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(OBJ) -MF $$@ $$<
Achin Gupta4f6ad662013-10-25 09:08:21 +0100273
Jon Medhurst407a95c2014-02-12 15:54:48 +0000274ifeq "$(CLEANING)" ""
275-include $(PREREQUISITES)
276endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100277
Jon Medhurst407a95c2014-02-12 15:54:48 +0000278endef
279
280
281define MAKE_LD
282
283$(eval PREREQUISITES := $(1).d)
284
285$(1) : $(2)
286 @echo " PP $$<"
287 $$(Q)$$(AS) $$(ASFLAGS) -P -E -o $$@ $$<
288
289$(PREREQUISITES) : $(2)
290 @echo " DEPS $$@"
291 @mkdir -p $$(dir $$@)
292 $$(Q)$$(AS) $$(ASFLAGS) -M -MT $(1) -MF $$@ $$<
293
294ifeq "$(CLEANING)" ""
295-include $(PREREQUISITES)
296endif
297
298endef
299
300
301define MAKE_OBJS
302 $(eval C_OBJS := $(filter %.c,$(2)))
303 $(eval REMAIN := $(filter-out %.c,$(2)))
304 $(eval $(foreach obj,$(C_OBJS),$(call MAKE_C,$(1),$(obj))))
305
306 $(eval S_OBJS := $(filter %.S,$(REMAIN)))
307 $(eval REMAIN := $(filter-out %.S,$(REMAIN)))
308 $(eval $(foreach obj,$(S_OBJS),$(call MAKE_S,$(1),$(obj))))
309
310 $(and $(REMAIN),$(error Unexpected source files present: $(REMAIN)))
311endef
312
313
314# NOTE: The line continuation '\' is required in the next define otherwise we
315# end up with a line-feed characer at the end of the last c filename.
316# Also bare this issue in mind if extending the list of supported filetypes.
317define SOURCES_TO_OBJS
318 $(notdir $(patsubst %.c,%.o,$(filter %.c,$(1)))) \
319 $(notdir $(patsubst %.S,%.o,$(filter %.S,$(1))))
320endef
321
322define MAKE_BL
323 $(eval BUILD_DIR := ${BUILD_PLAT}/bl$(1))
324 $(eval SOURCES := $(BL$(1)_SOURCES) $(BL_COMMON_SOURCES) $(PLAT_BL_COMMON_SOURCES))
325 $(eval OBJS := $(addprefix $(BUILD_DIR)/,$(call SOURCES_TO_OBJS,$(SOURCES))))
326 $(eval LINKERFILE := $(BUILD_DIR)/bl$(1).ld)
327 $(eval MAPFILE := $(BUILD_DIR)/bl$(1).map)
328 $(eval ELF := $(BUILD_DIR)/bl$(1).elf)
329 $(eval DUMP := $(BUILD_DIR)/bl$(1).dump)
330 $(eval BIN := $(BUILD_PLAT)/bl$(1).bin)
331
332 $(eval $(call MAKE_OBJS,$(BUILD_DIR),$(SOURCES)))
333 $(eval $(call MAKE_LD,$(LINKERFILE),$(BL$(1)_LINKERFILE)))
334
335$(BUILD_DIR) :
336 $$(Q)mkdir -p "$$@"
337
338$(ELF) : $(OBJS) $(LINKERFILE)
339 @echo " LD $$@"
Jon Medhurstecf0a712014-02-17 12:18:24 +0000340 @echo 'const char build_message[] = "Built : "__TIME__", "__DATE__;' | \
341 $$(CC) $$(CFLAGS) -xc - -o $(BUILD_DIR)/build_message.o
Jon Medhurst407a95c2014-02-12 15:54:48 +0000342 $$(Q)$$(LD) -o $$@ $$(LDFLAGS) -Map=$(MAPFILE) --script $(LINKERFILE) \
Jeenu Viswambharan2a30a752014-03-11 11:06:45 +0000343 $(BUILD_DIR)/build_message.o $(OBJS)
Jon Medhurst407a95c2014-02-12 15:54:48 +0000344
345$(DUMP) : $(ELF)
346 @echo " OD $$@"
347 $${Q}$${OD} -dx $$< > $$@
348
349$(BIN) : $(ELF)
350 @echo " BIN $$@"
351 $$(Q)$$(OC) -O binary $$< $$@
352 @echo
353 @echo "Built $$@ successfully"
354 @echo
355
356.PHONY : bl$(1)
357bl$(1) : $(BUILD_DIR) $(BIN) $(DUMP)
358
359all : bl$(1)
360
361$(eval FIP_DEPS += $(if $2,$(BIN),))
362$(eval FIP_ARGS += $(if $2,--bl$(1) $(BIN),))
363
364endef
365
366
Jon Medhurst66573cb2014-02-13 15:19:28 +0000367ifeq (${NEED_BL1},yes)
Jon Medhurst407a95c2014-02-12 15:54:48 +0000368$(eval $(call MAKE_BL,1))
Jon Medhurst66573cb2014-02-13 15:19:28 +0000369endif
Jon Medhurst407a95c2014-02-12 15:54:48 +0000370
Jon Medhurst66573cb2014-02-13 15:19:28 +0000371ifeq (${NEED_BL2},yes)
Jon Medhurst407a95c2014-02-12 15:54:48 +0000372$(eval $(call MAKE_BL,2,in_fip))
Jon Medhurst66573cb2014-02-13 15:19:28 +0000373endif
Jon Medhurst407a95c2014-02-12 15:54:48 +0000374
Jon Medhurst66573cb2014-02-13 15:19:28 +0000375ifeq (${NEED_BL31},yes)
Jon Medhurst407a95c2014-02-12 15:54:48 +0000376BL31_SOURCES += ${SPD_SOURCES}
377$(eval $(call MAKE_BL,31,in_fip))
Jon Medhurst66573cb2014-02-13 15:19:28 +0000378endif
Jon Medhurst407a95c2014-02-12 15:54:48 +0000379
380ifeq (${NEED_BL32},yes)
381$(eval $(call MAKE_BL,32,in_fip))
382endif
Ryan Harkin72ee3312014-01-15 16:55:07 +0000383
Jon Medhurst66573cb2014-02-13 15:19:28 +0000384${BUILD_PLAT}/fip.bin: ${FIP_DEPS} ${BL33} ${FIPTOOL}
385 $(if ${BL33},,$(error "To build a FIP, please set BL33 to point to the Normal World binary, eg: BL33=../uefi/FVP_AARCH64_EFI.fd"))
Harry Liebelf58ad362014-01-10 18:00:33 +0000386 ${Q}${FIPTOOL} --dump \
Achin Gupta375f5382014-02-18 18:12:48 +0000387 ${FIP_ARGS} \
Jon Medhurst407a95c2014-02-12 15:54:48 +0000388 --bl33 ${BL33} \
Harry Liebelf58ad362014-01-10 18:00:33 +0000389 $@
390 @echo
Jeenu Viswambharan2f2cef42014-02-19 09:38:18 +0000391 @echo "Built $@ successfully"
392 @echo
Harry Liebelf58ad362014-01-10 18:00:33 +0000393
394
Joakim Bech35fab8c2014-01-23 14:51:49 +0100395cscope:
396 @echo " CSCOPE"
397 ${Q}find ${CURDIR} -name "*.[chsS]" > cscope.files
398 ${Q}cscope -b -q -k
399
Ryan Harkin72ee3312014-01-15 16:55:07 +0000400help:
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +0000401 @echo "usage: ${MAKE} PLAT=<${HELP_PLATFORMS}> <all|bl1|bl2|bl31|distclean|clean|checkcodebase|checkpatch>"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000402 @echo ""
403 @echo "PLAT is used to specify which platform you wish to build."
Sandrine Bailleuxa08588a2014-03-21 13:16:35 +0000404 @echo "If no platform is specified, PLAT defaults to: ${DEFAULT_PLAT}"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000405 @echo ""
406 @echo "Supported Targets:"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +0000407 @echo " all Build the BL1, BL2 and BL31 binaries"
Ian Spray36eaaf32014-01-30 17:25:28 +0000408 @echo " bl1 Build the BL1 binary"
Jeenu Viswambharan8aa559c2014-02-21 11:42:08 +0000409 @echo " bl2 Build the BL2 binary"
Ian Spray36eaaf32014-01-30 17:25:28 +0000410 @echo " bl31 Build the BL31 binary"
411 @echo " checkcodebase Check the coding style of the entire source tree"
412 @echo " checkpatch Check the coding style on changes in the current"
413 @echo " branch against BASE_COMMIT (default origin/master)"
414 @echo " clean Clean the build for the selected platform"
Harry Liebelf58ad362014-01-10 18:00:33 +0000415 @echo " cscope Generate cscope index"
Ian Spray36eaaf32014-01-30 17:25:28 +0000416 @echo " distclean Remove all build artifacts for all platforms"
Harry Liebelf58ad362014-01-10 18:00:33 +0000417 @echo " fiptool Build the Firmware Image Package(FIP) creation tool"
Ryan Harkin72ee3312014-01-15 16:55:07 +0000418 @echo ""
419 @echo "note: most build targets require PLAT to be set to a specific platform."
420 @echo ""
421 @echo "example: build all targets for the FVP platform:"
422 @echo " CROSS_COMPILE=aarch64-none-elf- make PLAT=fvp all"