blob: b936c236be85a29e1e564553d2e2461bfe56021a [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +02002# Also see "include/mbedtls/mbedtls_config.h"
Paul Bakker5121ce52009-01-03 21:22:43 +00003
Alon Bar-Levf7a9f302015-02-18 17:55:05 +02004CFLAGS ?= -O2
Paul Elliott9e3256a2020-12-17 18:17:32 +00005WARNING_CFLAGS ?= -Wall -Wextra -Wformat=2 -Wno-format-nonliteral
Alon Bar-Levada41052015-02-18 17:47:52 +02006LDFLAGS ?=
Alon Bar-Levf7a9f302015-02-18 17:55:05 +02007
Gilles Peskine76dd3aa2020-07-02 15:58:37 +02008# Include ../include for public headers and . for private headers.
9# Note that . needs to be included explicitly for the sake of library
10# files that are not in the /library directory (which currently means
11# under /3rdparty).
Gilles Peskine66c3dc42020-06-03 02:25:17 +020012LOCAL_CFLAGS = $(WARNING_CFLAGS) -I. -I../include -D_FILE_OFFSET_BITS=64
Alon Bar-Levada41052015-02-18 17:47:52 +020013LOCAL_LDFLAGS =
Paul Bakker5121ce52009-01-03 21:22:43 +000014
Paul Bakkerc7ffd362012-04-05 12:08:29 +000015ifdef DEBUG
Alon Bar-Levf7a9f302015-02-18 17:55:05 +020016LOCAL_CFLAGS += -g3
Paul Bakkerc7ffd362012-04-05 12:08:29 +000017endif
18
Paul Bakkerad7eca22010-03-24 06:46:47 +000019# MicroBlaze specific options:
20# CFLAGS += -mno-xl-soft-mul -mxl-barrel-shift
Paul Bakker5121ce52009-01-03 21:22:43 +000021
Paul Bakkerad7eca22010-03-24 06:46:47 +000022# To compile on Plan9:
23# CFLAGS += -D_BSD_EXTENSION
Paul Bakker5121ce52009-01-03 21:22:43 +000024
Gilles Peskine687d1ab2021-04-22 01:01:56 +020025PERL ?= perl
26
Jerry Yue78ee992021-09-22 15:42:14 +080027ifdef WINDOWS
28PYTHON ?= python
29else
30PYTHON ?= $(shell if type python3 >/dev/null 2>/dev/null; then echo python3; else echo python; fi)
31endif
32
Manuel Pégourié-Gonnard02ba5782015-02-18 13:42:26 +000033# if were running on Windows build for Windows
34ifdef WINDOWS
35WINDOWS_BUILD=1
Andres Amaya Garciac471cd72018-06-13 09:28:04 +010036else ifeq ($(shell uname -s),Darwin)
Andres Amaya Garciae3402ce2018-06-20 10:43:21 +010037ifeq ($(AR),ar)
Andres Amaya Garcia1d937592018-06-13 10:04:58 +010038APPLE_BUILD ?= 1
Manuel Pégourié-Gonnard02ba5782015-02-18 13:42:26 +000039endif
Manuel Pégourié-Gonnard02ba5782015-02-18 13:42:26 +000040endif
41
Paul Bakkerad7eca22010-03-24 06:46:47 +000042# To compile as a shared library:
Paul Bakker9a736322012-11-14 12:39:52 +000043ifdef SHARED
Manuel Pégourié-Gonnard3cfb3452015-02-13 13:34:08 +000044# all code is position-indep with mingw, avoid warning about useless flag
Manuel Pégourié-Gonnard02ba5782015-02-18 13:42:26 +000045ifndef WINDOWS_BUILD
Alon Bar-Levf7a9f302015-02-18 17:55:05 +020046LOCAL_CFLAGS += -fPIC -fpic
Paul Bakker9a736322012-11-14 12:39:52 +000047endif
Manuel Pégourié-Gonnard3cfb3452015-02-13 13:34:08 +000048endif
Paul Bakker5121ce52009-01-03 21:22:43 +000049
Dave Rodgman527b82a2021-07-02 15:19:38 +010050SOEXT_TLS=so.16
51SOEXT_X509=so.4
52SOEXT_CRYPTO=so.10
Paul Bakker33aac372011-08-13 11:47:41 +000053
Antonin Décimo36e89b52019-01-23 15:24:37 +010054# Set AR_DASH= (empty string) to use an ar implementation that does not accept
Andres Amaya Garciaceed91b2018-03-25 23:48:39 +010055# the - prefix for command line options (e.g. llvm-ar)
56AR_DASH ?= -
Paul Bakker5121ce52009-01-03 21:22:43 +000057
Andres Amaya Garciac51d6132018-06-19 17:25:34 +010058ARFLAGS = $(AR_DASH)src
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +010059ifdef APPLE_BUILD
Andres Amaya Garciac51d6132018-06-19 17:25:34 +010060ifneq ($(APPLE_BUILD),0)
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +010061ARFLAGS = $(AR_DASH)Src
62RLFLAGS = -no_warning_for_no_symbols -c
63RL ?= ranlib
Andres Amaya Garciac51d6132018-06-19 17:25:34 +010064endif
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +010065endif
66
Andres Amaya Garciac51d6132018-06-19 17:25:34 +010067DLEXT ?= so
Alon Bar-Lev18ba0cc2015-02-14 01:04:58 +020068ifdef WINDOWS_BUILD
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +010069# Windows shared library extension:
70DLEXT = dll
71else ifdef APPLE_BUILD
Andres Amaya Garciac51d6132018-06-19 17:25:34 +010072ifneq ($(APPLE_BUILD),0)
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +010073# Mac OS X shared library extension:
74DLEXT = dylib
Paul Bakkercd5b5292012-05-10 20:49:10 +000075endif
Paul Bakker6083fd22011-12-03 21:45:14 +000076endif
Paul Bakkerbdb912d2012-02-13 23:11:30 +000077
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +020078OBJS_CRYPTO= \
79 aes.o \
80 aesni.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +020081 aria.o \
82 asn1parse.o \
83 asn1write.o \
84 base64.o \
85 bignum.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +020086 camellia.o \
87 ccm.o \
88 chacha20.o \
89 chachapoly.o \
90 cipher.o \
91 cipher_wrap.o \
92 cmac.o \
gabor-mezei-armd1125342021-07-12 16:31:22 +020093 constant_time.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +020094 ctr_drbg.o \
95 des.o \
96 dhm.o \
97 ecdh.o \
98 ecdsa.o \
99 ecjpake.o \
100 ecp.o \
101 ecp_curves.o \
102 entropy.o \
103 entropy_poll.o \
104 error.o \
105 gcm.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200106 hkdf.o \
107 hmac_drbg.o \
108 md.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200109 md5.o \
110 memory_buffer_alloc.o \
Hanno Becker53314aa2021-02-22 15:03:37 +0000111 mps_reader.o \
112 mps_trace.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200113 nist_kw.o \
114 oid.o \
115 padlock.o \
116 pem.o \
117 pk.o \
118 pk_wrap.o \
119 pkcs12.o \
120 pkcs5.o \
121 pkparse.o \
122 pkwrite.o \
123 platform.o \
124 platform_util.o \
125 poly1305.o \
126 psa_crypto.o \
Ronald Cron7ceee8d2021-03-17 16:55:43 +0100127 psa_crypto_aead.o \
Ronald Cron0ff57952021-03-08 16:46:35 +0100128 psa_crypto_cipher.o \
Ronald Crond7906322021-01-28 16:07:56 +0100129 psa_crypto_client.o \
Steven Cooremancd84cb42020-07-16 20:28:36 +0200130 psa_crypto_driver_wrappers.o \
Ronald Cron00b7bfc2020-11-25 15:25:26 +0100131 psa_crypto_ecp.o \
Steven Cooreman0e307642021-02-18 16:18:32 +0100132 psa_crypto_hash.o \
Steven Cooremand13a70f2021-03-19 15:24:23 +0100133 psa_crypto_mac.o \
Ronald Cron00b7bfc2020-11-25 15:25:26 +0100134 psa_crypto_rsa.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200135 psa_crypto_se.o \
136 psa_crypto_slot_management.o \
137 psa_crypto_storage.o \
138 psa_its_file.o \
139 ripemd160.o \
140 rsa.o \
Chris Jones66a4cd42021-03-09 16:04:12 +0000141 rsa_alt_helpers.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200142 sha1.o \
143 sha256.o \
144 sha512.o \
Jerry Yue78ee992021-09-22 15:42:14 +0800145 ssl_debug_helpers_generated.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200146 threading.o \
147 timing.o \
148 version.o \
149 version_features.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200150 # This line is intentionally left blank
Jaeden Amero30b340a2018-10-25 17:37:00 +0100151
Christoph M. Wintersteiger62dddd02018-12-14 13:07:50 +0000152include ../3rdparty/Makefile.inc
153LOCAL_CFLAGS+=$(THIRDPARTY_INCLUDES)
Christoph M. Wintersteiger2d4725f2019-02-15 13:35:04 +0000154OBJS_CRYPTO+=$(THIRDPARTY_CRYPTO_OBJECTS)
Manuel Pégourié-Gonnard463e09d2015-06-24 11:54:19 +0200155
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200156OBJS_X509= \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200157 x509.o \
158 x509_create.o \
159 x509_crl.o \
160 x509_crt.o \
161 x509_csr.o \
162 x509write_crt.o \
163 x509write_csr.o \
164 # This line is intentionally left blank
Manuel Pégourié-Gonnard463e09d2015-06-24 11:54:19 +0200165
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200166OBJS_TLS= \
167 debug.o \
168 net_sockets.o \
169 ssl_cache.o \
170 ssl_ciphersuites.o \
171 ssl_cli.o \
172 ssl_cookie.o \
173 ssl_msg.o \
174 ssl_srv.o \
175 ssl_ticket.o \
176 ssl_tls.o \
Hanno Beckerbe9d6642020-08-21 13:20:06 +0100177 ssl_tls13_keys.o \
Jerry Yu3cc4c2a2021-08-06 16:29:08 +0800178 ssl_tls13_client.o \
179 ssl_tls13_server.o \
Jerry Yu65dd2cc2021-08-18 16:38:40 +0800180 ssl_tls13_generic.o \
Manuel Pégourié-Gonnard10a5b532020-04-03 11:50:59 +0200181 # This line is intentionally left blank
Manuel Pégourié-Gonnard463e09d2015-06-24 11:54:19 +0200182
Paul Bakkerad7eca22010-03-24 06:46:47 +0000183.SILENT:
Paul Bakker5121ce52009-01-03 21:22:43 +0000184
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200185.PHONY: all static shared clean
186
Paul Bakker9a736322012-11-14 12:39:52 +0000187ifndef SHARED
Paul Bakker3783d6d2011-07-13 11:25:36 +0000188all: static
Paul Bakker9a736322012-11-14 12:39:52 +0000189else
Manuel Pégourié-Gonnard04a81d52015-01-27 11:24:05 +0100190all: shared static
Paul Bakker9a736322012-11-14 12:39:52 +0000191endif
Paul Bakker5121ce52009-01-03 21:22:43 +0000192
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200193static: libmbedcrypto.a libmbedx509.a libmbedtls.a
Paul Bakker5121ce52009-01-03 21:22:43 +0000194
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200195shared: libmbedcrypto.$(DLEXT) libmbedx509.$(DLEXT) libmbedtls.$(DLEXT)
Manuel Pégourié-Gonnardc26a0922015-01-23 12:51:33 +0000196
Tom Cosgrove0eedd362021-11-10 11:15:46 +0000197# Windows builds under Mingw can fail if make tries to create archives in the same
198# directory at the same time - see https://bugs.launchpad.net/gcc-arm-embedded/+bug/1848002.
199# This forces builds of the .a files to be serialised.
200ifdef WINDOWS
201libmbedtls.a: | libmbedx509.a
202libmbedx509.a: | libmbedcrypto.a
203endif
204
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200205# tls
206libmbedtls.a: $(OBJS_TLS)
Paul Bakkerad7eca22010-03-24 06:46:47 +0000207 echo " AR $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100208 $(AR) $(ARFLAGS) $@ $(OBJS_TLS)
209ifdef APPLE_BUILD
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100210ifneq ($(APPLE_BUILD),0)
Paul Bakkerad7eca22010-03-24 06:46:47 +0000211 echo " RL $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100212 $(RL) $(RLFLAGS) $@
213endif
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100214endif
Paul Bakker5121ce52009-01-03 21:22:43 +0000215
Manuel Pégourié-Gonnarded46c432015-08-10 10:17:32 +0200216libmbedtls.$(SOEXT_TLS): $(OBJS_TLS) libmbedx509.so
Paul Bakkerad7eca22010-03-24 06:46:47 +0000217 echo " LD $@"
Harmen Stoppelsfcb4fb72021-11-04 17:33:51 +0100218 $(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS_TLS) -L. -lmbedx509 -lmbedcrypto $(LOCAL_LDFLAGS) $(LDFLAGS)
Paul Bakker5121ce52009-01-03 21:22:43 +0000219
Manuel Pégourié-Gonnard752c5012015-06-25 11:54:52 +0200220libmbedtls.so: libmbedtls.$(SOEXT_TLS)
221 echo " LN $@ -> $<"
222 ln -sf $< $@
Paul Bakkerb0763142013-11-05 11:27:12 +0100223
Mitsuhiro Nakamura5ff2ee52018-02-20 11:58:19 +0900224libmbedtls.dylib: $(OBJS_TLS) libmbedx509.dylib
Paul Bakkerad7eca22010-03-24 06:46:47 +0000225 echo " LD $@"
Harmen Stoppelsfcb4fb72021-11-04 17:33:51 +0100226 $(CC) -dynamiclib -o $@ $(OBJS_TLS) -L. -lmbedx509 -lmbedcrypto $(LOCAL_LDFLAGS) $(LDFLAGS)
Paul Bakker5121ce52009-01-03 21:22:43 +0000227
Manuel Pégourié-Gonnard111ce9f2015-08-07 12:07:16 +0200228libmbedtls.dll: $(OBJS_TLS) libmbedx509.dll
Paul Bakkerb0763142013-11-05 11:27:12 +0100229 echo " LD $@"
Harmen Stoppelsfcb4fb72021-11-04 17:33:51 +0100230 $(CC) -shared -Wl,-soname,$@ -Wl,--out-implib,$@.a -o $@ $(OBJS_TLS) -lws2_32 -lwinmm -lgdi32 -L. -lmbedx509 -lmbedcrypto -static-libgcc $(LOCAL_LDFLAGS) $(LDFLAGS)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200231
232# x509
233libmbedx509.a: $(OBJS_X509)
234 echo " AR $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100235 $(AR) $(ARFLAGS) $@ $(OBJS_X509)
236ifdef APPLE_BUILD
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100237ifneq ($(APPLE_BUILD),0)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200238 echo " RL $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100239 $(RL) $(RLFLAGS) $@
240endif
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100241endif
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200242
Gilles Peskine722a7e62020-02-26 19:05:19 +0100243libmbedx509.$(SOEXT_X509): $(OBJS_X509) libmbedcrypto.so
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200244 echo " LD $@"
Harmen Stoppels01ef7232021-11-03 00:53:05 +0100245 $(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS_X509) -L. -lmbedcrypto $(LOCAL_LDFLAGS) $(LDFLAGS)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200246
Manuel Pégourié-Gonnard752c5012015-06-25 11:54:52 +0200247libmbedx509.so: libmbedx509.$(SOEXT_X509)
248 echo " LN $@ -> $<"
249 ln -sf $< $@
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200250
Gilles Peskine722a7e62020-02-26 19:05:19 +0100251libmbedx509.dylib: $(OBJS_X509) libmbedcrypto.dylib
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200252 echo " LD $@"
Harmen Stoppels01ef7232021-11-03 00:53:05 +0100253 $(CC) -dynamiclib -o $@ $(OBJS_X509) -L. -lmbedcrypto $(LOCAL_LDFLAGS) $(LDFLAGS)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200254
Gilles Peskine722a7e62020-02-26 19:05:19 +0100255libmbedx509.dll: $(OBJS_X509) libmbedcrypto.dll
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200256 echo " LD $@"
Manuel Pégourié-Gonnard111ce9f2015-08-07 12:07:16 +0200257 $(CC) -shared -Wl,-soname,$@ -Wl,--out-implib,$@.a -o $@ $(OBJS_X509) -lws2_32 -lwinmm -lgdi32 -L. -lmbedcrypto -static-libgcc $(LOCAL_LDFLAGS) $(LDFLAGS)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200258
259# crypto
260libmbedcrypto.a: $(OBJS_CRYPTO)
261 echo " AR $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100262 $(AR) $(ARFLAGS) $@ $(OBJS_CRYPTO)
263ifdef APPLE_BUILD
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100264ifneq ($(APPLE_BUILD),0)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200265 echo " RL $@"
Andres Amaya Garcia0e98e882018-05-23 09:19:54 +0100266 $(RL) $(RLFLAGS) $@
267endif
Andres Amaya Garciac51d6132018-06-19 17:25:34 +0100268endif
Paul Bakkera585beb2011-06-21 08:59:44 +0000269
Paul Bakker5121ce52009-01-03 21:22:43 +0000270libmbedcrypto.$(SOEXT_CRYPTO): $(OBJS_CRYPTO)
Paul Bakker62f88dc2012-05-10 21:26:28 +0000271 echo " LD $@"
Harmen Stoppels01ef7232021-11-03 00:53:05 +0100272 $(CC) -shared -Wl,-soname,$@ -o $@ $(OBJS_CRYPTO) $(LOCAL_LDFLAGS) $(LDFLAGS)
Andrzej Kurek8af39232019-10-07 09:19:18 -0400273
Paul Bakker62f88dc2012-05-10 21:26:28 +0000274libmbedcrypto.so: libmbedcrypto.$(SOEXT_CRYPTO)
Manuel Pégourié-Gonnardc26a0922015-01-23 12:51:33 +0000275 echo " LN $@ -> $<"
Paul Bakker62f88dc2012-05-10 21:26:28 +0000276 ln -sf $< $@
Paul Bakker5121ce52009-01-03 21:22:43 +0000277
278libmbedcrypto.dylib: $(OBJS_CRYPTO)
279 echo " LD $@"
Harmen Stoppels01ef7232021-11-03 00:53:05 +0100280 $(CC) -dynamiclib -o $@ $(OBJS_CRYPTO) $(LOCAL_LDFLAGS) $(LDFLAGS)
Paul Bakker5121ce52009-01-03 21:22:43 +0000281
282libmbedcrypto.dll: $(OBJS_CRYPTO)
283 echo " LD $@"
284 $(CC) -shared -Wl,-soname,$@ -Wl,--out-implib,$@.a -o $@ $(OBJS_CRYPTO) -lws2_32 -lwinmm -lgdi32 -static-libgcc $(LOCAL_LDFLAGS) $(LDFLAGS)
285
286.c.o:
287 echo " CC $<"
Christoph M. Wintersteiger977d89a2018-10-25 12:47:03 +0100288 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) -o $@ -c $<
Paul Bakker5121ce52009-01-03 21:22:43 +0000289
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200290.PHONY: generated_files
Gilles Peskine12e27d42021-12-13 23:13:18 +0100291GENERATED_FILES = \
292 error.c version_features.c \
Gilles Peskineccbc3182021-12-15 12:55:37 +0100293 ssl_debug_helpers_generated.c
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200294generated_files: $(GENERATED_FILES)
295
296error.c: ../scripts/generate_errors.pl
297error.c: ../scripts/data_files/error.fmt
Gilles Peskine1411c7c2021-04-22 14:50:16 +0200298error.c: $(filter-out %config%,$(wildcard ../include/mbedtls/*.h))
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200299error.c:
300 echo " Gen $@"
301 $(PERL) ../scripts/generate_errors.pl
302
Gilles Peskineccbc3182021-12-15 12:55:37 +0100303ssl_debug_helpers_generated.c: ../scripts/generate_ssl_debug_helpers.py
304ssl_debug_helpers_generated.c: $(filter-out %config%,$(wildcard ../include/mbedtls/*.h))
305ssl_debug_helpers_generated.c:
Jerry Yue78ee992021-09-22 15:42:14 +0800306 echo " Gen $@"
Jerry Yud05e1ce2021-12-02 14:09:22 +0800307 $(PYTHON) ../scripts/generate_ssl_debug_helpers.py --mbedtls-root .. .
Jerry Yue78ee992021-09-22 15:42:14 +0800308
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200309version_features.c: ../scripts/generate_features.pl
310version_features.c: ../scripts/data_files/version_features.fmt
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +0200311## The generated file only depends on the options that are present in mbedtls_config.h,
Gilles Peskine1411c7c2021-04-22 14:50:16 +0200312## not on which options are set. To avoid regenerating this file all the time
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +0200313## when switching between configurations, don't declare mbedtls_config.h as a
Gilles Peskine1411c7c2021-04-22 14:50:16 +0200314## dependency. Remove this file from your working tree if you've just added or
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +0200315## removed an option in mbedtls_config.h.
316#version_features.c: ../include/mbedtls/mbedtls_config.h
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200317version_features.c:
318 echo " Gen $@"
319 $(PERL) ../scripts/generate_features.pl
320
Paul Bakker5121ce52009-01-03 21:22:43 +0000321clean:
322ifndef WINDOWS
Gilles Peskine55d53532020-03-09 17:48:13 +0100323 rm -f *.o libmbed*
Gilles Peskinea647f122020-03-10 10:36:19 +0100324 rm -f $(THIRDPARTY_CRYPTO_OBJECTS)
Manuel Pégourié-Gonnard5c59a4f2015-06-24 13:06:24 +0200325else
Darryl Green9b9a7902019-08-30 14:51:55 +0100326 if exist *.o del /Q /F *.o
327 if exist libmbed* del /Q /F libmbed*
Gilles Peskinea647f122020-03-10 10:36:19 +0100328 del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(THIRDPARTY_CRYPTO_OBJECTS))
Paul Bakker5121ce52009-01-03 21:22:43 +0000329endif
Gilles Peskine687d1ab2021-04-22 01:01:56 +0200330
331neat: clean
332ifndef WINDOWS
333 rm -f $(GENERATED_FILES)
334else
335 for %f in ($(subst /,\,$(GENERATED_FILES))) if exist %f del /Q /F %f
336endif