xref: /rk3399_ARM-atf/tools/cert_create/Makefile (revision a004ee8de72e622b5b6ef35f163d168e05810a65)
16f971622SJuan Castillo#
2cc277de8SChris Kay# Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
36f971622SJuan Castillo#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
56f971622SJuan Castillo#
66f971622SJuan Castillo
76f971622SJuan CastilloPLAT		:= none
86f971622SJuan CastilloDEBUG		:= 0
9b13e3f9fSManish V BadarkheCRTTOOL		?= cert_create${BIN_EXT}
10fafd3ec9SManish V BadarkheBINARY		:= $(notdir ${CRTTOOL})
1143743ea5SSandrine BailleuxCOT		:= tbbr
126f971622SJuan Castillo
13cc277de8SChris Kaytoolchains := host
14cc277de8SChris Kay
15231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := ../../make_helpers/
16231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
17e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
187c4e1eeaSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}common.mk
19cf2dd17dSJuan Pablo Condeinclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
20cc277de8SChris Kayinclude ${MAKE_HELPERS_DIRECTORY}toolchain.mk
21*a004ee8dSChris Kayinclude ${MAKE_HELPERS_DIRECTORY}utilities.mk
22231c1470SEvan Lloyd
23b94bf967SPankaj Guptaifneq (${PLAT},none)
24b94bf967SPankaj GuptaTF_PLATFORM_ROOT	:=	../../plat/
25b94bf967SPankaj Guptainclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
26b94bf967SPankaj GuptaPLAT_CERT_CREATE_HELPER_MK := ${PLAT_DIR}/cert_create_tbbr.mk
27b94bf967SPankaj Guptaendif
28b94bf967SPankaj Gupta
293b24b66eSSandrine Bailleux# Common source files.
303b24b66eSSandrine BailleuxOBJECTS := src/cert.o \
313b24b66eSSandrine Bailleux           src/cmd_opt.o \
323b24b66eSSandrine Bailleux           src/ext.o \
333b24b66eSSandrine Bailleux           src/key.o \
343b24b66eSSandrine Bailleux           src/main.o \
353b24b66eSSandrine Bailleux           src/sha.o
36bb41eb7aSMasahiro Yamada
3743743ea5SSandrine Bailleux# Chain of trust.
3843743ea5SSandrine Bailleuxifeq (${COT},tbbr)
393b24b66eSSandrine Bailleux  include src/tbbr/tbbr.mk
40a9d5c273SSandrine Bailleuxelse ifeq (${COT},dualroot)
41a9d5c273SSandrine Bailleux  include src/dualroot/cot.mk
420a6bf811Slaurenw-armelse ifeq (${COT},cca)
430a6bf811Slaurenw-arm  include src/cca/cot.mk
4443743ea5SSandrine Bailleuxelse
4543743ea5SSandrine Bailleux  $(error Unknown chain of trust ${COT})
4643743ea5SSandrine Bailleuxendif
47231c1470SEvan Lloyd
48b94bf967SPankaj Guptaifneq (,$(wildcard ${PLAT_CERT_CREATE_HELPER_MK}))
49b94bf967SPankaj Guptainclude ${PLAT_CERT_CREATE_HELPER_MK}
50b94bf967SPankaj Guptaendif
51b94bf967SPankaj Gupta
52cf2dd17dSJuan Pablo Conde# Select OpenSSL version flag according to the OpenSSL build selected
53cf2dd17dSJuan Pablo Conde# from setting the OPENSSL_DIR path.
54cf2dd17dSJuan Pablo Conde$(eval $(call SELECT_OPENSSL_API_VERSION))
55cf2dd17dSJuan Pablo Conde
563b24b66eSSandrine BailleuxHOSTCCFLAGS := -Wall -std=c99
576f971622SJuan Castillo
586f971622SJuan Castilloifeq (${DEBUG},1)
59750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -g -O0 -DDEBUG -DLOG_LEVEL=40
606f971622SJuan Castilloelse
61750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -O2 -DLOG_LEVEL=20
626f971622SJuan Castilloendif
633b24b66eSSandrine Bailleux
64*a004ee8dSChris KayHOSTCCFLAGS += ${DEFINES} -DPLAT_MSG=$(call escape-shell,"$(PLAT_MSG)")
65cf2dd17dSJuan Pablo Conde# USING_OPENSSL3 flag will be added to the HOSTCCFLAGS variable with the proper
66cf2dd17dSJuan Pablo Conde# computed value.
67cf2dd17dSJuan Pablo CondeHOSTCCFLAGS += -DUSING_OPENSSL3=$(USING_OPENSSL3)
68bb41eb7aSMasahiro Yamada
696f971622SJuan Castillo# Make soft links and include from local directory otherwise wrong headers
706f971622SJuan Castillo# could get pulled in from firmware tree.
71b94bf967SPankaj GuptaINC_DIR += -I ./include -I ${PLAT_INCLUDE} -I ${OPENSSL_DIR}/include
729bc52d33SJuan Pablo Conde
739bc52d33SJuan Pablo Conde# Include library directories where OpenSSL library files are located.
749bc52d33SJuan Pablo Conde# For a normal installation (i.e.: when ${OPENSSL_DIR} = /usr or
759bc52d33SJuan Pablo Conde# /usr/local), binaries are located under the ${OPENSSL_DIR}/lib/
769bc52d33SJuan Pablo Conde# directory. However, for a local build of OpenSSL, the built binaries are
779bc52d33SJuan Pablo Conde# located under the main project directory (i.e.: ${OPENSSL_DIR}, not
789bc52d33SJuan Pablo Conde# ${OPENSSL_DIR}/lib/).
799bc52d33SJuan Pablo CondeLIB_DIR := -L ${OPENSSL_DIR}/lib -L ${OPENSSL_DIR}
806f971622SJuan CastilloLIB := -lssl -lcrypto
816f971622SJuan Castillo
82cf2dd17dSJuan Pablo Conde.PHONY: all clean realclean --openssl
836f971622SJuan Castillo
84aa57ce63SVincent Stehléall: --openssl ${BINARY}
856f971622SJuan Castillo
86aa57ce63SVincent Stehlé${BINARY}: ${OBJECTS} Makefile
877c4e1eeaSChris Kay	$(s)echo "  HOSTLD  $@"
88*a004ee8dSChris Kay	$(q)$(host-cc) ${OBJECTS} ${LIB_DIR} ${LIB} -o $@
896f971622SJuan Castillo
906f971622SJuan Castillo%.o: %.c
917c4e1eeaSChris Kay	$(s)echo "  HOSTCC  $<"
927c4e1eeaSChris Kay	$(q)$(host-cc) -c ${HOSTCCFLAGS} ${INC_DIR} $< -o $@
936f971622SJuan Castillo
94cf2dd17dSJuan Pablo Conde--openssl:
95cf2dd17dSJuan Pablo Condeifeq ($(DEBUG),1)
967c4e1eeaSChris Kay	$(s)echo "Selected OpenSSL version: ${OPENSSL_CURRENT_VER}"
97cf2dd17dSJuan Pablo Condeendif
98cf2dd17dSJuan Pablo Conde
996f971622SJuan Castilloclean:
100*a004ee8dSChris Kay	$(call SHELL_DELETE_ALL,${OBJECTS})
1016f971622SJuan Castillo
1026f971622SJuan Castillorealclean: clean
103f1477d4aSEvan Lloyd	$(call SHELL_DELETE,${BINARY})
104