xref: /rk3399_ARM-atf/tools/cert_create/Makefile (revision cf2dd17ddda2f44f5dedddcaf48300d16358597a)
16f971622SJuan Castillo#
2*cf2dd17dSJuan Pablo Conde# Copyright (c) 2015-2022, Arm Limited and Contributors. All rights reserved.
36f971622SJuan Castillo#
482cb2c1aSdp-arm# SPDX-License-Identifier: BSD-3-Clause
56f971622SJuan Castillo#
66f971622SJuan Castillo
76f971622SJuan CastilloPLAT		:= none
8a9673900Sdp-armV		?= 0
96f971622SJuan CastilloDEBUG		:= 0
10b13e3f9fSManish V BadarkheCRTTOOL		?= cert_create${BIN_EXT}
11fafd3ec9SManish V BadarkheBINARY		:= $(notdir ${CRTTOOL})
1243743ea5SSandrine BailleuxCOT		:= tbbr
136f971622SJuan Castillo
14231c1470SEvan LloydMAKE_HELPERS_DIRECTORY := ../../make_helpers/
15231c1470SEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_macros.mk
16e7f54dbdSEvan Lloydinclude ${MAKE_HELPERS_DIRECTORY}build_env.mk
17*cf2dd17dSJuan Pablo Condeinclude ${MAKE_HELPERS_DIRECTORY}defaults.mk
18231c1470SEvan Lloyd
19b94bf967SPankaj Guptaifneq (${PLAT},none)
20b94bf967SPankaj GuptaTF_PLATFORM_ROOT	:=	../../plat/
21b94bf967SPankaj Guptainclude ${MAKE_HELPERS_DIRECTORY}plat_helpers.mk
22b94bf967SPankaj GuptaPLAT_CERT_CREATE_HELPER_MK := ${PLAT_DIR}/cert_create_tbbr.mk
23b94bf967SPankaj Guptaendif
24b94bf967SPankaj Gupta
253b24b66eSSandrine Bailleux# Common source files.
263b24b66eSSandrine BailleuxOBJECTS := src/cert.o \
273b24b66eSSandrine Bailleux           src/cmd_opt.o \
283b24b66eSSandrine Bailleux           src/ext.o \
293b24b66eSSandrine Bailleux           src/key.o \
303b24b66eSSandrine Bailleux           src/main.o \
313b24b66eSSandrine Bailleux           src/sha.o
32bb41eb7aSMasahiro Yamada
3343743ea5SSandrine Bailleux# Chain of trust.
3443743ea5SSandrine Bailleuxifeq (${COT},tbbr)
353b24b66eSSandrine Bailleux  include src/tbbr/tbbr.mk
36a9d5c273SSandrine Bailleuxelse ifeq (${COT},dualroot)
37a9d5c273SSandrine Bailleux  include src/dualroot/cot.mk
380a6bf811Slaurenw-armelse ifeq (${COT},cca)
390a6bf811Slaurenw-arm  include src/cca/cot.mk
4043743ea5SSandrine Bailleuxelse
4143743ea5SSandrine Bailleux  $(error Unknown chain of trust ${COT})
4243743ea5SSandrine Bailleuxendif
43231c1470SEvan Lloyd
44b94bf967SPankaj Guptaifneq (,$(wildcard ${PLAT_CERT_CREATE_HELPER_MK}))
45b94bf967SPankaj Guptainclude ${PLAT_CERT_CREATE_HELPER_MK}
46b94bf967SPankaj Guptaendif
47b94bf967SPankaj Gupta
48*cf2dd17dSJuan Pablo Conde# Select OpenSSL version flag according to the OpenSSL build selected
49*cf2dd17dSJuan Pablo Conde# from setting the OPENSSL_DIR path.
50*cf2dd17dSJuan Pablo Conde$(eval $(call SELECT_OPENSSL_API_VERSION))
51*cf2dd17dSJuan Pablo Conde
523b24b66eSSandrine BailleuxHOSTCCFLAGS := -Wall -std=c99
536f971622SJuan Castillo
546f971622SJuan Castilloifeq (${DEBUG},1)
55750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -g -O0 -DDEBUG -DLOG_LEVEL=40
566f971622SJuan Castilloelse
57750e8d80SAntonio Nino Diaz  HOSTCCFLAGS += -O2 -DLOG_LEVEL=20
586f971622SJuan Castilloendif
593b24b66eSSandrine Bailleux
606f971622SJuan Castilloifeq (${V},0)
616f971622SJuan Castillo  Q := @
626f971622SJuan Castilloelse
636f971622SJuan Castillo  Q :=
646f971622SJuan Castilloendif
656f971622SJuan Castillo
66750e8d80SAntonio Nino DiazHOSTCCFLAGS += ${DEFINES}
67*cf2dd17dSJuan Pablo Conde# USING_OPENSSL3 flag will be added to the HOSTCCFLAGS variable with the proper
68*cf2dd17dSJuan Pablo Conde# computed value.
69*cf2dd17dSJuan Pablo CondeHOSTCCFLAGS += -DUSING_OPENSSL3=$(USING_OPENSSL3)
70bb41eb7aSMasahiro Yamada
716f971622SJuan Castillo# Make soft links and include from local directory otherwise wrong headers
726f971622SJuan Castillo# could get pulled in from firmware tree.
73b94bf967SPankaj GuptaINC_DIR += -I ./include -I ${PLAT_INCLUDE} -I ${OPENSSL_DIR}/include
749bc52d33SJuan Pablo Conde
759bc52d33SJuan Pablo Conde# Include library directories where OpenSSL library files are located.
769bc52d33SJuan Pablo Conde# For a normal installation (i.e.: when ${OPENSSL_DIR} = /usr or
779bc52d33SJuan Pablo Conde# /usr/local), binaries are located under the ${OPENSSL_DIR}/lib/
789bc52d33SJuan Pablo Conde# directory. However, for a local build of OpenSSL, the built binaries are
799bc52d33SJuan Pablo Conde# located under the main project directory (i.e.: ${OPENSSL_DIR}, not
809bc52d33SJuan Pablo Conde# ${OPENSSL_DIR}/lib/).
819bc52d33SJuan Pablo CondeLIB_DIR := -L ${OPENSSL_DIR}/lib -L ${OPENSSL_DIR}
826f971622SJuan CastilloLIB := -lssl -lcrypto
836f971622SJuan Castillo
8472610c41Sdp-armHOSTCC ?= gcc
856f971622SJuan Castillo
86*cf2dd17dSJuan Pablo Conde.PHONY: all clean realclean --openssl
876f971622SJuan Castillo
8869a91659SRoss Burtonall: ${BINARY}
896f971622SJuan Castillo
90*cf2dd17dSJuan Pablo Conde${BINARY}: --openssl ${OBJECTS} Makefile
91750e8d80SAntonio Nino Diaz	@echo "  HOSTLD  $@"
926f971622SJuan Castillo	@echo 'const char build_msg[] = "Built : "__TIME__", "__DATE__; \
93bb41eb7aSMasahiro Yamada                const char platform_msg[] = "${PLAT_MSG}";' | \
94750e8d80SAntonio Nino Diaz                ${HOSTCC} -c ${HOSTCCFLAGS} -xc - -o src/build_msg.o
9572610c41Sdp-arm	${Q}${HOSTCC} src/build_msg.o ${OBJECTS} ${LIB_DIR} ${LIB} -o $@
966f971622SJuan Castillo
976f971622SJuan Castillo%.o: %.c
98750e8d80SAntonio Nino Diaz	@echo "  HOSTCC  $<"
99750e8d80SAntonio Nino Diaz	${Q}${HOSTCC} -c ${HOSTCCFLAGS} ${INC_DIR} $< -o $@
1006f971622SJuan Castillo
101*cf2dd17dSJuan Pablo Conde--openssl:
102*cf2dd17dSJuan Pablo Condeifeq ($(DEBUG),1)
103*cf2dd17dSJuan Pablo Conde	@echo "Selected OpenSSL version: ${OPENSSL_CURRENT_VER}"
104*cf2dd17dSJuan Pablo Condeendif
105*cf2dd17dSJuan Pablo Conde
1066f971622SJuan Castilloclean:
107f1477d4aSEvan Lloyd	$(call SHELL_DELETE_ALL, src/build_msg.o ${OBJECTS})
1086f971622SJuan Castillo
1096f971622SJuan Castillorealclean: clean
110f1477d4aSEvan Lloyd	$(call SHELL_DELETE,${BINARY})
111f1477d4aSEvan Lloyd
112