Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 1 | DESTDIR=/usr/local |
Manuel Pégourié-Gonnard | 5285970 | 2015-01-27 14:05:16 +0100 | [diff] [blame] | 2 | PREFIX=mbedtls_ |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 3 | PERL ?= perl |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 4 | |
Gilles Peskine | 48230e8 | 2024-03-04 16:42:54 +0100 | [diff] [blame] | 5 | ifneq (,$(filter-out lib library/%,$(or $(MAKECMDGOALS),all))) |
| 6 | ifeq (,$(wildcard framework/exported.make)) |
| 7 | # Use the define keyword to get a multi-line message. |
| 8 | # GNU make appends ". Stop.", so tweak the ending of our message accordingly. |
| 9 | define error_message |
| 10 | $(MBEDTLS_PATH)/framework/exported.make not found. |
| 11 | Run `git submodule update --init` to fetch the submodule contents. |
| 12 | This is a fatal error |
| 13 | endef |
| 14 | $(error $(error_message)) |
| 15 | endif |
| 16 | include framework/exported.make |
| 17 | endif |
Gilles Peskine | 469f781 | 2024-02-29 18:19:56 +0100 | [diff] [blame] | 18 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 19 | .SILENT: |
| 20 | |
Gilles Peskine | 0ab6c8a | 2022-12-08 22:18:31 +0100 | [diff] [blame] | 21 | .PHONY: all no_test programs lib tests install uninstall clean test check lcov apidoc apidoc_clean |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 22 | |
Andres AG | 7aa5fa1 | 2016-08-25 16:36:16 +0100 | [diff] [blame] | 23 | all: programs tests |
| 24 | $(MAKE) post_build |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 25 | |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 26 | no_test: programs |
| 27 | |
Ronald Cron | ddaf99c | 2020-06-19 11:27:26 +0200 | [diff] [blame] | 28 | programs: lib mbedtls_test |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 29 | $(MAKE) -C programs |
Paul Bakker | f9964ab | 2012-04-05 12:07:50 +0000 | [diff] [blame] | 30 | |
| 31 | lib: |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 32 | $(MAKE) -C library |
| 33 | |
Ronald Cron | ddaf99c | 2020-06-19 11:27:26 +0200 | [diff] [blame] | 34 | tests: lib mbedtls_test |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 35 | $(MAKE) -C tests |
Paul Bakker | f9964ab | 2012-04-05 12:07:50 +0000 | [diff] [blame] | 36 | |
Ronald Cron | ddaf99c | 2020-06-19 11:27:26 +0200 | [diff] [blame] | 37 | mbedtls_test: |
| 38 | $(MAKE) -C tests mbedtls_test |
| 39 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 40 | library/%: |
| 41 | $(MAKE) -C library $* |
| 42 | programs/%: |
| 43 | $(MAKE) -C programs $* |
| 44 | tests/%: |
| 45 | $(MAKE) -C tests $* |
| 46 | |
| 47 | .PHONY: generated_files |
| 48 | generated_files: library/generated_files |
| 49 | generated_files: programs/generated_files |
| 50 | generated_files: tests/generated_files |
| 51 | generated_files: visualc_files |
| 52 | |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 53 | # Set GEN_FILES to the empty string to disable dependencies on generated |
| 54 | # source files. Then `make generated_files` will only build files that |
| 55 | # are missing, it will not rebuilt files that are present but out of date. |
| 56 | # This is useful, for example, if you have a source tree where |
| 57 | # `make generated_files` has already run and file timestamps reflect the |
| 58 | # time the files were copied or extracted, and you are now in an environment |
| 59 | # that lacks some of the necessary tools to re-generate the files. |
| 60 | # If $(GEN_FILES) is non-empty, the generated source files' dependencies |
| 61 | # are treated ordinarily, based on file timestamps. |
David Horstmann | 0d11176 | 2024-08-28 20:49:12 +0100 | [diff] [blame] | 62 | GEN_FILES ?= |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 63 | |
| 64 | # In dependencies where the target is a configuration-independent generated |
| 65 | # file, use `TARGET: $(gen_file_dep) DEPENDENCY1 DEPENDENCY2 ...` |
| 66 | # rather than directly `TARGET: DEPENDENCY1 DEPENDENCY2 ...`. This |
| 67 | # enables the re-generation to be turned off when GEN_FILES is disabled. |
| 68 | ifdef GEN_FILES |
| 69 | gen_file_dep = |
| 70 | else |
Gilles Peskine | 1bfc09b | 2023-09-09 21:26:05 +0200 | [diff] [blame] | 71 | # Order-only dependency: generate the target if it's absent, but don't |
| 72 | # re-generate it if it's present but older than its dependencies. |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 73 | gen_file_dep = | |
| 74 | endif |
| 75 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 76 | .PHONY: visualc_files |
Bence Szépkúti | fac1122 | 2024-03-12 16:38:23 +0100 | [diff] [blame] | 77 | VISUALC_FILES = visualc/VS2017/mbedTLS.sln visualc/VS2017/mbedTLS.vcxproj |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 78 | # TODO: $(app).vcxproj for each $(app) in programs/ |
| 79 | visualc_files: $(VISUALC_FILES) |
Gilles Peskine | 94230ea | 2021-05-18 15:48:56 +0200 | [diff] [blame] | 80 | |
| 81 | # Ensure that the .c files that generate_visualc_files.pl enumerates are |
Gilles Peskine | a13deaf | 2021-05-19 14:26:37 +0200 | [diff] [blame] | 82 | # present before it runs. It doesn't matter if the files aren't up-to-date, |
| 83 | # they just need to be present. |
| 84 | $(VISUALC_FILES): | library/generated_files |
Gilles Peskine | 0b62b7a | 2023-09-08 16:19:13 +0200 | [diff] [blame] | 85 | $(VISUALC_FILES): $(gen_file_dep) scripts/generate_visualc_files.pl |
Bence Szépkúti | fac1122 | 2024-03-12 16:38:23 +0100 | [diff] [blame] | 86 | $(VISUALC_FILES): $(gen_file_dep) scripts/data_files/vs2017-app-template.vcxproj |
| 87 | $(VISUALC_FILES): $(gen_file_dep) scripts/data_files/vs2017-main-template.vcxproj |
| 88 | $(VISUALC_FILES): $(gen_file_dep) scripts/data_files/vs2017-sln-template.sln |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 89 | # TODO: also the list of .c and .h source files, but not their content |
| 90 | $(VISUALC_FILES): |
| 91 | echo " Gen $@ ..." |
| 92 | $(PERL) scripts/generate_visualc_files.pl |
| 93 | |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 94 | ifndef WINDOWS |
Manuel Pégourié-Gonnard | 9983993 | 2015-08-03 10:34:09 +0200 | [diff] [blame] | 95 | install: no_test |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 96 | mkdir -p $(DESTDIR)/include/mbedtls |
Ruini Xue | 5a9cb61 | 2018-06-28 23:21:26 +0800 | [diff] [blame] | 97 | cp -rp include/mbedtls $(DESTDIR)/include |
Jaeden Amero | 3c7cc5e | 2018-11-15 17:38:58 +0000 | [diff] [blame] | 98 | mkdir -p $(DESTDIR)/include/psa |
| 99 | cp -rp include/psa $(DESTDIR)/include |
Darryl Green | 11999bb | 2018-03-13 15:22:58 +0000 | [diff] [blame] | 100 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 101 | mkdir -p $(DESTDIR)/lib |
Gilles Peskine | 722a7e6 | 2020-02-26 19:05:19 +0100 | [diff] [blame] | 102 | cp -RP library/libmbedtls.* $(DESTDIR)/lib |
| 103 | cp -RP library/libmbedx509.* $(DESTDIR)/lib |
Manuel Pégourié-Gonnard | 52a5079 | 2015-07-27 10:36:12 +0200 | [diff] [blame] | 104 | cp -RP library/libmbedcrypto.* $(DESTDIR)/lib |
Darryl Green | 11999bb | 2018-03-13 15:22:58 +0000 | [diff] [blame] | 105 | |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 106 | mkdir -p $(DESTDIR)/bin |
| 107 | for p in programs/*/* ; do \ |
| 108 | if [ -x $$p ] && [ ! -d $$p ] ; \ |
| 109 | then \ |
| 110 | f=$(PREFIX)`basename $$p` ; \ |
| 111 | cp $$p $(DESTDIR)/bin/$$f ; \ |
| 112 | fi \ |
| 113 | done |
| 114 | |
Paul Bakker | 9a73632 | 2012-11-14 12:39:52 +0000 | [diff] [blame] | 115 | uninstall: |
Manuel Pégourié-Gonnard | 7f80997 | 2015-03-09 17:05:11 +0000 | [diff] [blame] | 116 | rm -rf $(DESTDIR)/include/mbedtls |
Wu, Jheng-Jhong | 89b9814 | 2020-11-26 09:27:17 +0800 | [diff] [blame] | 117 | rm -rf $(DESTDIR)/include/psa |
Gilles Peskine | 722a7e6 | 2020-02-26 19:05:19 +0100 | [diff] [blame] | 118 | rm -f $(DESTDIR)/lib/libmbedtls.* |
| 119 | rm -f $(DESTDIR)/lib/libmbedx509.* |
Manuel Pégourié-Gonnard | 52a5079 | 2015-07-27 10:36:12 +0200 | [diff] [blame] | 120 | rm -f $(DESTDIR)/lib/libmbedcrypto.* |
Darryl Green | 11999bb | 2018-03-13 15:22:58 +0000 | [diff] [blame] | 121 | |
Paul Bakker | 9a73632 | 2012-11-14 12:39:52 +0000 | [diff] [blame] | 122 | for p in programs/*/* ; do \ |
| 123 | if [ -x $$p ] && [ ! -d $$p ] ; \ |
| 124 | then \ |
| 125 | f=$(PREFIX)`basename $$p` ; \ |
| 126 | rm -f $(DESTDIR)/bin/$$f ; \ |
| 127 | fi \ |
| 128 | done |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 129 | endif |
Paul Bakker | 9a73632 | 2012-11-14 12:39:52 +0000 | [diff] [blame] | 130 | |
Simon Butcher | 1ceab6e | 2016-06-21 10:14:00 +0100 | [diff] [blame] | 131 | |
Nir Sonnenschein | b7ebbca | 2018-08-29 10:20:12 +0300 | [diff] [blame] | 132 | WARNING_BORDER_LONG =**********************************************************************************\n |
| 133 | CTR_DRBG_128_BIT_KEY_WARN_L1=**** WARNING! MBEDTLS_CTR_DRBG_USE_128_BIT_KEY defined! ****\n |
| 134 | CTR_DRBG_128_BIT_KEY_WARN_L2=**** Using 128-bit keys for CTR_DRBG limits the security of generated ****\n |
| 135 | CTR_DRBG_128_BIT_KEY_WARN_L3=**** keys and operations that use random values generated to 128-bit security ****\n |
| 136 | |
| 137 | CTR_DRBG_128_BIT_KEY_WARNING=\n$(WARNING_BORDER_LONG)$(CTR_DRBG_128_BIT_KEY_WARN_L1)$(CTR_DRBG_128_BIT_KEY_WARN_L2)$(CTR_DRBG_128_BIT_KEY_WARN_L3)$(WARNING_BORDER_LONG) |
| 138 | |
Simon Butcher | 1ceab6e | 2016-06-21 10:14:00 +0100 | [diff] [blame] | 139 | # Post build steps |
| 140 | post_build: |
Simon Butcher | cff625f | 2016-06-27 15:15:11 +0100 | [diff] [blame] | 141 | ifndef WINDOWS |
Nir Sonnenschein | b7ebbca | 2018-08-29 10:20:12 +0300 | [diff] [blame] | 142 | |
| 143 | # If 128-bit keys are configured for CTR_DRBG, display an appropriate warning |
Gilles Peskine | 3bdd412 | 2019-07-27 23:52:53 +0200 | [diff] [blame] | 144 | -scripts/config.py get MBEDTLS_CTR_DRBG_USE_128_BIT_KEY && ([ $$? -eq 0 ]) && \ |
Nir Sonnenschein | b7ebbca | 2018-08-29 10:20:12 +0300 | [diff] [blame] | 145 | echo '$(CTR_DRBG_128_BIT_KEY_WARNING)' |
| 146 | |
Simon Butcher | cff625f | 2016-06-27 15:15:11 +0100 | [diff] [blame] | 147 | endif |
Simon Butcher | 1ceab6e | 2016-06-21 10:14:00 +0100 | [diff] [blame] | 148 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 149 | clean: clean_more_on_top |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 150 | $(MAKE) -C library clean |
| 151 | $(MAKE) -C programs clean |
| 152 | $(MAKE) -C tests clean |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 153 | |
| 154 | clean_more_on_top: |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 155 | ifndef WINDOWS |
Paul Bakker | bd3b359 | 2016-07-13 16:37:32 +0100 | [diff] [blame] | 156 | find . \( -name \*.gcno -o -name \*.gcda -o -name \*.info \) -exec rm {} + |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 157 | endif |
Paul Bakker | 5121ce5 | 2009-01-03 21:22:43 +0000 | [diff] [blame] | 158 | |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 159 | neat: clean_more_on_top |
| 160 | $(MAKE) -C library neat |
| 161 | $(MAKE) -C programs neat |
| 162 | $(MAKE) -C tests neat |
| 163 | ifndef WINDOWS |
Bence Szépkúti | fac1122 | 2024-03-12 16:38:23 +0100 | [diff] [blame] | 164 | rm -f visualc/VS2017/*.vcxproj visualc/VS2017/mbedTLS.sln |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 165 | else |
Bence Szépkúti | fac1122 | 2024-03-12 16:38:23 +0100 | [diff] [blame] | 166 | if exist visualc\VS2017\*.vcxproj del /Q /F visualc\VS2017\*.vcxproj |
| 167 | if exist visualc\VS2017\mbedTLS.sln del /Q /F visualc\VS2017\mbedTLS.sln |
Gilles Peskine | 687d1ab | 2021-04-22 01:01:56 +0200 | [diff] [blame] | 168 | endif |
| 169 | |
Andres AG | c49b808 | 2016-08-31 16:10:45 +0100 | [diff] [blame] | 170 | check: lib tests |
Alon Bar-Lev | 06f0d26 | 2015-02-18 17:18:28 +0200 | [diff] [blame] | 171 | $(MAKE) -C tests check |
Paul Bakker | 37ca75d | 2011-01-06 12:28:03 +0000 | [diff] [blame] | 172 | |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 173 | test: check |
Manuel Pégourié-Gonnard | 6529ff0 | 2014-01-31 13:41:07 +0100 | [diff] [blame] | 174 | |
Manuel Pégourié-Gonnard | 8511384 | 2015-07-08 21:20:03 +0100 | [diff] [blame] | 175 | ifndef WINDOWS |
Gilles Peskine | 0ab6c8a | 2022-12-08 22:18:31 +0100 | [diff] [blame] | 176 | # For coverage testing: |
| 177 | # 1. Build with: |
| 178 | # make CFLAGS='--coverage -g3 -O0' LDFLAGS='--coverage' |
| 179 | # 2. Run the relevant tests for the part of the code you're interested in. |
| 180 | # For the reference coverage measurement, see |
| 181 | # tests/scripts/basic-build-test.sh |
| 182 | # 3. Run scripts/lcov.sh to generate an HTML report. |
Manuel Pégourié-Gonnard | 546d86c | 2014-01-31 16:19:43 +0100 | [diff] [blame] | 183 | lcov: |
Gilles Peskine | 3d4ea54 | 2022-11-30 17:35:44 +0100 | [diff] [blame] | 184 | scripts/lcov.sh |
Manuel Pégourié-Gonnard | 546d86c | 2014-01-31 16:19:43 +0100 | [diff] [blame] | 185 | |
Paul Bakker | 37ca75d | 2011-01-06 12:28:03 +0000 | [diff] [blame] | 186 | apidoc: |
| 187 | mkdir -p apidoc |
Krzysztof Stachowiak | 744a4ac | 2018-01-22 13:38:31 +0100 | [diff] [blame] | 188 | cd doxygen && doxygen mbedtls.doxyfile |
Paul Bakker | 37ca75d | 2011-01-06 12:28:03 +0000 | [diff] [blame] | 189 | |
| 190 | apidoc_clean: |
Manuel Pégourié-Gonnard | 5c59a4f | 2015-06-24 13:06:24 +0200 | [diff] [blame] | 191 | rm -rf apidoc |
| 192 | endif |
Gilles Peskine | 66c1e2c | 2018-01-16 14:04:05 +0100 | [diff] [blame] | 193 | |
| 194 | ## Editor navigation files |
Gilles Peskine | 646ad22 | 2020-11-09 21:20:16 +0100 | [diff] [blame] | 195 | C_SOURCE_FILES = $(wildcard \ |
| 196 | 3rdparty/*/include/*/*.h 3rdparty/*/include/*/*/*.h 3rdparty/*/include/*/*/*/*.h \ |
| 197 | 3rdparty/*/*.c 3rdparty/*/*/*.c 3rdparty/*/*/*/*.c 3rdparty/*/*/*/*/*.c \ |
| 198 | include/*/*.h \ |
| 199 | library/*.[hc] \ |
| 200 | programs/*/*.[hc] \ |
| 201 | tests/include/*/*.h tests/include/*/*/*.h \ |
| 202 | tests/src/*.c tests/src/*/*.c \ |
| 203 | tests/suites/*.function \ |
| 204 | ) |
Manuel Pégourié-Gonnard | c9f8956 | 2020-04-02 12:10:45 +0200 | [diff] [blame] | 205 | # Exuberant-ctags invocation. Other ctags implementations may require different options. |
Gilles Peskine | b305b00 | 2021-01-13 13:45:30 +0100 | [diff] [blame] | 206 | CTAGS = ctags --langmap=c:+.h.function --line-directives=no -o |
Gilles Peskine | 66c1e2c | 2018-01-16 14:04:05 +0100 | [diff] [blame] | 207 | tags: $(C_SOURCE_FILES) |
Manuel Pégourié-Gonnard | c9f8956 | 2020-04-02 12:10:45 +0200 | [diff] [blame] | 208 | $(CTAGS) $@ $(C_SOURCE_FILES) |
Gilles Peskine | 66c1e2c | 2018-01-16 14:04:05 +0100 | [diff] [blame] | 209 | TAGS: $(C_SOURCE_FILES) |
Gilles Peskine | b305b00 | 2021-01-13 13:45:30 +0100 | [diff] [blame] | 210 | etags --no-line-directive -o $@ $(C_SOURCE_FILES) |
Gilles Peskine | 8346c7a | 2020-11-20 11:50:08 +0100 | [diff] [blame] | 211 | global: GPATH GRTAGS GSYMS GTAGS |
Gilles Peskine | 66c1e2c | 2018-01-16 14:04:05 +0100 | [diff] [blame] | 212 | GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES) |
| 213 | ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc |
Gilles Peskine | 8346c7a | 2020-11-20 11:50:08 +0100 | [diff] [blame] | 214 | cscope: cscope.in.out cscope.po.out cscope.out |
Gilles Peskine | d0c7801 | 2020-11-09 21:21:31 +0100 | [diff] [blame] | 215 | cscope.in.out cscope.po.out cscope.out: $(C_SOURCE_FILES) |
| 216 | cscope -bq -u -Iinclude -Ilibrary $(patsubst %,-I%,$(wildcard 3rdparty/*/include)) -Itests/include $(C_SOURCE_FILES) |
Gilles Peskine | 8346c7a | 2020-11-20 11:50:08 +0100 | [diff] [blame] | 217 | .PHONY: cscope global |