blob: 767093918a76c06355545d2107339572e45c37ae [file] [log] [blame]
Juan Castillo11abdcd2014-10-21 11:30:42 +01001#
Chris Kayc8a47ba2023-10-20 09:17:33 +00002# Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
Juan Castillo11abdcd2014-10-21 11:30:42 +01003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Juan Castillo11abdcd2014-10-21 11:30:42 +01005#
6
Juan Castillo11abdcd2014-10-21 11:30:42 +01007PLAT := none
Juan Castillo11abdcd2014-10-21 11:30:42 +01008DEBUG := 0
Manish V Badarkheb9adb522020-09-05 04:40:41 +01009CRTTOOL ?= cert_create${BIN_EXT}
Manish V Badarkhe635482e2020-08-13 05:56:33 +010010BINARY := $(notdir ${CRTTOOL})
Sandrine Bailleux2f7f1442020-01-15 10:11:07 +010011COT := tbbr
Juan Castillo11abdcd2014-10-21 11:30:42 +010012
Chris Kayc8a47ba2023-10-20 09:17:33 +000013toolchains := host
14
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010015MAKE_HELPERS_DIRECTORY := ../../make_helpers/
16include ${MAKE_HELPERS_DIRECTORY}build_macros.mk
17include ${MAKE_HELPERS_DIRECTORY}build_env.mk
Chris Kay1870c722024-05-02 17:52:37 +000018include ${MAKE_HELPERS_DIRECTORY}common.mk
Juan Pablo Conde3539c742022-10-25 19:41:02 -040019include ${MAKE_HELPERS_DIRECTORY}defaults.mk
Chris Kayc8a47ba2023-10-20 09:17:33 +000020include ${MAKE_HELPERS_DIRECTORY}toolchain.mk
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010021
Pankaj Guptadd906e62020-12-09 14:02:38 +053022ifneq (${PLAT},none)
23TF_PLATFORM_ROOT := ../../plat/
24include ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
25PLAT_CERT_CREATE_HELPER_MK := ${PLAT_DIR}/cert_create_tbbr.mk
26endif
27
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010028# Common source files.
Juan Castillo11abdcd2014-10-21 11:30:42 +010029OBJECTS := src/cert.o \
Juan Castillo1218dd52015-07-03 16:23:16 +010030 src/cmd_opt.o \
Juan Castillo11abdcd2014-10-21 11:30:42 +010031 src/ext.o \
32 src/key.o \
33 src/main.o \
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010034 src/sha.o
Juan Castillo11abdcd2014-10-21 11:30:42 +010035
Sandrine Bailleux2f7f1442020-01-15 10:11:07 +010036# Chain of trust.
37ifeq (${COT},tbbr)
38 include src/tbbr/tbbr.mk
Sandrine Bailleux5d505082020-01-10 14:32:30 +010039else ifeq (${COT},dualroot)
40 include src/dualroot/cot.mk
laurenw-arm1c7c5762022-04-21 16:21:53 -050041else ifeq (${COT},cca)
42 include src/cca/cot.mk
Sandrine Bailleux2f7f1442020-01-15 10:11:07 +010043else
44 $(error Unknown chain of trust ${COT})
45endif
Juan Castillo11abdcd2014-10-21 11:30:42 +010046
Pankaj Guptadd906e62020-12-09 14:02:38 +053047ifneq (,$(wildcard ${PLAT_CERT_CREATE_HELPER_MK}))
48include ${PLAT_CERT_CREATE_HELPER_MK}
49endif
50
Juan Pablo Conde3539c742022-10-25 19:41:02 -040051# Select OpenSSL version flag according to the OpenSSL build selected
52# from setting the OPENSSL_DIR path.
53$(eval $(call SELECT_OPENSSL_API_VERSION))
54
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010055HOSTCCFLAGS := -Wall -std=c99
Juan Castillo11abdcd2014-10-21 11:30:42 +010056
57ifeq (${DEBUG},1)
Antonio Nino Diaz1c4d3622018-10-04 14:35:38 +010058 HOSTCCFLAGS += -g -O0 -DDEBUG -DLOG_LEVEL=40
Juan Castillo11abdcd2014-10-21 11:30:42 +010059else
Antonio Nino Diaz1c4d3622018-10-04 14:35:38 +010060 HOSTCCFLAGS += -O2 -DLOG_LEVEL=20
Juan Castillo11abdcd2014-10-21 11:30:42 +010061endif
Sandrine Bailleux3f9df3d2020-01-14 18:06:38 +010062
Antonio Nino Diaz1c4d3622018-10-04 14:35:38 +010063HOSTCCFLAGS += ${DEFINES}
Juan Pablo Conde3539c742022-10-25 19:41:02 -040064# USING_OPENSSL3 flag will be added to the HOSTCCFLAGS variable with the proper
65# computed value.
66HOSTCCFLAGS += -DUSING_OPENSSL3=$(USING_OPENSSL3)
Masahiro Yamadaa27c1662017-05-22 12:11:24 +090067
Juan Castillo11abdcd2014-10-21 11:30:42 +010068# Make soft links and include from local directory otherwise wrong headers
69# could get pulled in from firmware tree.
Pankaj Guptadd906e62020-12-09 14:02:38 +053070INC_DIR += -I ./include -I ${PLAT_INCLUDE} -I ${OPENSSL_DIR}/include
Juan Pablo Conde7275a5a2022-03-02 18:10:08 -050071
72# Include library directories where OpenSSL library files are located.
73# For a normal installation (i.e.: when ${OPENSSL_DIR} = /usr or
74# /usr/local), binaries are located under the ${OPENSSL_DIR}/lib/
75# directory. However, for a local build of OpenSSL, the built binaries are
76# located under the main project directory (i.e.: ${OPENSSL_DIR}, not
77# ${OPENSSL_DIR}/lib/).
78LIB_DIR := -L ${OPENSSL_DIR}/lib -L ${OPENSSL_DIR}
Juan Castillo11abdcd2014-10-21 11:30:42 +010079LIB := -lssl -lcrypto
80
Juan Pablo Conde3539c742022-10-25 19:41:02 -040081.PHONY: all clean realclean --openssl
Juan Castillo11abdcd2014-10-21 11:30:42 +010082
Vincent Stehléb75a0dd2023-07-04 16:14:02 +020083all: --openssl ${BINARY}
Juan Castillo11abdcd2014-10-21 11:30:42 +010084
Vincent Stehléb75a0dd2023-07-04 16:14:02 +020085${BINARY}: ${OBJECTS} Makefile
Chris Kay1870c722024-05-02 17:52:37 +000086 $(s)echo " HOSTLD $@"
87 $(q)echo 'const char build_msg[] = "Built : "__TIME__", "__DATE__; \
Masahiro Yamadaa27c1662017-05-22 12:11:24 +090088 const char platform_msg[] = "${PLAT_MSG}";' | \
Chris Kay523e8642023-12-04 12:03:51 +000089 $(host-cc) -c ${HOSTCCFLAGS} -xc - -o src/build_msg.o
Chris Kay1870c722024-05-02 17:52:37 +000090 $(q)$(host-cc) src/build_msg.o ${OBJECTS} ${LIB_DIR} ${LIB} -o $@
Juan Castillo11abdcd2014-10-21 11:30:42 +010091
92%.o: %.c
Chris Kay1870c722024-05-02 17:52:37 +000093 $(s)echo " HOSTCC $<"
94 $(q)$(host-cc) -c ${HOSTCCFLAGS} ${INC_DIR} $< -o $@
Juan Castillo11abdcd2014-10-21 11:30:42 +010095
Juan Pablo Conde3539c742022-10-25 19:41:02 -040096--openssl:
97ifeq ($(DEBUG),1)
Chris Kay1870c722024-05-02 17:52:37 +000098 $(s)echo "Selected OpenSSL version: ${OPENSSL_CURRENT_VER}"
Juan Pablo Conde3539c742022-10-25 19:41:02 -040099endif
100
Juan Castillo11abdcd2014-10-21 11:30:42 +0100101clean:
Evan Lloyd26c6cb42015-12-02 18:33:55 +0000102 $(call SHELL_DELETE_ALL, src/build_msg.o ${OBJECTS})
Juan Castillo11abdcd2014-10-21 11:30:42 +0100103
104realclean: clean
Jonathan Wright69da5f22018-04-30 15:04:02 +0100105 $(call SHELL_DELETE,${BINARY})