2009-01-03 22:22:43 +01:00
|
|
|
DESTDIR=/usr/local
|
2015-01-27 14:05:16 +01:00
|
|
|
PREFIX=mbedtls_
|
2021-04-22 01:01:56 +02:00
|
|
|
PERL ?= perl
|
2009-01-03 22:22:43 +01:00
|
|
|
|
|
|
|
.SILENT:
|
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
.PHONY: all no_test programs lib tests install uninstall clean test check covtest lcov apidoc apidoc_clean
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2016-08-25 17:36:16 +02:00
|
|
|
all: programs tests
|
|
|
|
$(MAKE) post_build
|
2015-02-18 16:18:28 +01:00
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
no_test: programs
|
|
|
|
|
2020-06-19 11:27:26 +02:00
|
|
|
programs: lib mbedtls_test
|
2015-02-18 16:18:28 +01:00
|
|
|
$(MAKE) -C programs
|
2012-04-05 14:07:50 +02:00
|
|
|
|
|
|
|
lib:
|
2015-02-18 16:18:28 +01:00
|
|
|
$(MAKE) -C library
|
|
|
|
|
2020-06-19 11:27:26 +02:00
|
|
|
tests: lib mbedtls_test
|
2015-02-18 16:18:28 +01:00
|
|
|
$(MAKE) -C tests
|
2012-04-05 14:07:50 +02:00
|
|
|
|
2020-06-19 11:27:26 +02:00
|
|
|
mbedtls_test:
|
|
|
|
$(MAKE) -C tests mbedtls_test
|
|
|
|
|
2021-04-22 01:01:56 +02:00
|
|
|
library/%:
|
|
|
|
$(MAKE) -C library $*
|
|
|
|
programs/%:
|
|
|
|
$(MAKE) -C programs $*
|
|
|
|
tests/%:
|
|
|
|
$(MAKE) -C tests $*
|
|
|
|
|
|
|
|
.PHONY: generated_files
|
|
|
|
generated_files: library/generated_files
|
|
|
|
generated_files: programs/generated_files
|
|
|
|
generated_files: tests/generated_files
|
|
|
|
generated_files: visualc_files
|
|
|
|
|
|
|
|
.PHONY: visualc_files
|
|
|
|
VISUALC_FILES = visualc/VS2010/mbedTLS.sln visualc/VS2010/mbedTLS.vcxproj
|
|
|
|
# TODO: $(app).vcxproj for each $(app) in programs/
|
|
|
|
visualc_files: $(VISUALC_FILES)
|
2021-05-18 15:48:56 +02:00
|
|
|
|
|
|
|
# Ensure that the .c files that generate_visualc_files.pl enumerates are
|
2021-05-19 14:26:37 +02:00
|
|
|
# present before it runs. It doesn't matter if the files aren't up-to-date,
|
|
|
|
# they just need to be present.
|
|
|
|
$(VISUALC_FILES): | library/generated_files
|
2021-04-22 01:01:56 +02:00
|
|
|
$(VISUALC_FILES): scripts/generate_visualc_files.pl
|
|
|
|
$(VISUALC_FILES): scripts/data_files/vs2010-app-template.vcxproj
|
|
|
|
$(VISUALC_FILES): scripts/data_files/vs2010-main-template.vcxproj
|
|
|
|
$(VISUALC_FILES): scripts/data_files/vs2010-sln-template.sln
|
|
|
|
# TODO: also the list of .c and .h source files, but not their content
|
|
|
|
$(VISUALC_FILES):
|
|
|
|
echo " Gen $@ ..."
|
|
|
|
$(PERL) scripts/generate_visualc_files.pl
|
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
ifndef WINDOWS
|
2015-08-03 10:34:09 +02:00
|
|
|
install: no_test
|
2015-03-09 18:05:11 +01:00
|
|
|
mkdir -p $(DESTDIR)/include/mbedtls
|
2018-06-28 17:21:26 +02:00
|
|
|
cp -rp include/mbedtls $(DESTDIR)/include
|
2018-11-15 18:38:58 +01:00
|
|
|
mkdir -p $(DESTDIR)/include/psa
|
|
|
|
cp -rp include/psa $(DESTDIR)/include
|
2018-03-13 16:22:58 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
mkdir -p $(DESTDIR)/lib
|
2020-02-26 19:05:19 +01:00
|
|
|
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
|
|
|
cp -RP library/libmbedx509.* $(DESTDIR)/lib
|
2015-07-27 10:36:12 +02:00
|
|
|
cp -RP library/libmbedcrypto.* $(DESTDIR)/lib
|
2018-03-13 16:22:58 +01:00
|
|
|
|
2009-01-03 22:22:43 +01:00
|
|
|
mkdir -p $(DESTDIR)/bin
|
|
|
|
for p in programs/*/* ; do \
|
|
|
|
if [ -x $$p ] && [ ! -d $$p ] ; \
|
|
|
|
then \
|
|
|
|
f=$(PREFIX)`basename $$p` ; \
|
|
|
|
cp $$p $(DESTDIR)/bin/$$f ; \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
2012-11-14 13:39:52 +01:00
|
|
|
uninstall:
|
2015-03-09 18:05:11 +01:00
|
|
|
rm -rf $(DESTDIR)/include/mbedtls
|
2020-11-26 02:27:17 +01:00
|
|
|
rm -rf $(DESTDIR)/include/psa
|
2020-02-26 19:05:19 +01:00
|
|
|
rm -f $(DESTDIR)/lib/libmbedtls.*
|
|
|
|
rm -f $(DESTDIR)/lib/libmbedx509.*
|
2015-07-27 10:36:12 +02:00
|
|
|
rm -f $(DESTDIR)/lib/libmbedcrypto.*
|
2018-03-13 16:22:58 +01:00
|
|
|
|
2012-11-14 13:39:52 +01:00
|
|
|
for p in programs/*/* ; do \
|
|
|
|
if [ -x $$p ] && [ ! -d $$p ] ; \
|
|
|
|
then \
|
|
|
|
f=$(PREFIX)`basename $$p` ; \
|
|
|
|
rm -f $(DESTDIR)/bin/$$f ; \
|
|
|
|
fi \
|
|
|
|
done
|
2015-06-24 13:06:24 +02:00
|
|
|
endif
|
2012-11-14 13:39:52 +01:00
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
|
2018-08-29 09:20:12 +02:00
|
|
|
WARNING_BORDER_LONG =**********************************************************************************\n
|
|
|
|
CTR_DRBG_128_BIT_KEY_WARN_L1=**** WARNING! MBEDTLS_CTR_DRBG_USE_128_BIT_KEY defined! ****\n
|
|
|
|
CTR_DRBG_128_BIT_KEY_WARN_L2=**** Using 128-bit keys for CTR_DRBG limits the security of generated ****\n
|
|
|
|
CTR_DRBG_128_BIT_KEY_WARN_L3=**** keys and operations that use random values generated to 128-bit security ****\n
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2016-06-21 11:14:00 +02:00
|
|
|
# Post build steps
|
|
|
|
post_build:
|
2016-06-27 16:15:11 +02:00
|
|
|
ifndef WINDOWS
|
2018-08-29 09:20:12 +02:00
|
|
|
|
|
|
|
# If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
|
2019-07-27 23:52:53 +02:00
|
|
|
-scripts/config.py get MBEDTLS_CTR_DRBG_USE_128_BIT_KEY && ([ $$? -eq 0 ]) && \
|
2018-08-29 09:20:12 +02:00
|
|
|
echo '$(CTR_DRBG_128_BIT_KEY_WARNING)'
|
|
|
|
|
2016-06-27 16:15:11 +02:00
|
|
|
endif
|
2016-06-21 11:14:00 +02:00
|
|
|
|
2021-04-22 01:01:56 +02:00
|
|
|
clean: clean_more_on_top
|
2015-02-18 16:18:28 +01:00
|
|
|
$(MAKE) -C library clean
|
|
|
|
$(MAKE) -C programs clean
|
|
|
|
$(MAKE) -C tests clean
|
2021-04-22 01:01:56 +02:00
|
|
|
|
|
|
|
clean_more_on_top:
|
2015-06-24 13:06:24 +02:00
|
|
|
ifndef WINDOWS
|
2016-07-13 17:37:32 +02:00
|
|
|
find . \( -name \*.gcno -o -name \*.gcda -o -name \*.info \) -exec rm {} +
|
2015-06-24 13:06:24 +02:00
|
|
|
endif
|
2009-01-03 22:22:43 +01:00
|
|
|
|
2021-04-22 01:01:56 +02:00
|
|
|
neat: clean_more_on_top
|
|
|
|
$(MAKE) -C library neat
|
|
|
|
$(MAKE) -C programs neat
|
|
|
|
$(MAKE) -C tests neat
|
|
|
|
ifndef WINDOWS
|
|
|
|
rm -f visualc/VS2010/*.vcxproj visualc/VS2010/mbedTLS.sln
|
|
|
|
else
|
|
|
|
if exist visualc\VS2010\*.vcxproj del /Q /F visualc\VS2010\*.vcxproj
|
|
|
|
if exist visualc\VS2010\mbedTLS.sln del /Q /F visualc\VS2010\mbedTLS.sln
|
|
|
|
endif
|
|
|
|
|
2016-08-31 17:10:45 +02:00
|
|
|
check: lib tests
|
2015-02-18 16:18:28 +01:00
|
|
|
$(MAKE) -C tests check
|
2011-01-06 13:28:03 +01:00
|
|
|
|
2015-06-24 13:06:24 +02:00
|
|
|
test: check
|
2014-01-31 13:41:07 +01:00
|
|
|
|
2015-07-08 22:20:03 +02:00
|
|
|
ifndef WINDOWS
|
2014-02-24 12:39:18 +01:00
|
|
|
# note: for coverage testing, build with:
|
2015-06-24 13:06:24 +02:00
|
|
|
# make CFLAGS='--coverage -g3 -O0'
|
2014-02-26 19:39:01 +01:00
|
|
|
covtest:
|
2015-06-26 16:50:24 +02:00
|
|
|
$(MAKE) check
|
2014-02-24 11:57:36 +01:00
|
|
|
programs/test/selftest
|
2020-02-26 19:48:43 +01:00
|
|
|
tests/compat.sh
|
|
|
|
tests/ssl-opt.sh
|
2014-02-24 11:57:36 +01:00
|
|
|
|
2014-01-31 16:19:43 +01:00
|
|
|
lcov:
|
|
|
|
rm -rf Coverage
|
2014-06-13 12:22:07 +02:00
|
|
|
lcov --capture --initial --directory library -o files.info
|
2020-05-28 17:20:31 +02:00
|
|
|
lcov --rc lcov_branch_coverage=1 --capture --directory library -o tests.info
|
|
|
|
lcov --rc lcov_branch_coverage=1 --add-tracefile files.info --add-tracefile tests.info -o all.info
|
|
|
|
lcov --rc lcov_branch_coverage=1 --remove all.info -o final.info '*.h'
|
2014-02-24 12:39:18 +01:00
|
|
|
gendesc tests/Descriptions.txt -o descriptions
|
2020-05-28 17:20:31 +02:00
|
|
|
genhtml --title "mbed TLS" --description-file descriptions --keep-descriptions --legend --branch-coverage -o Coverage final.info
|
2014-06-16 16:24:24 +02:00
|
|
|
rm -f files.info tests.info all.info final.info descriptions
|
2014-01-31 16:19:43 +01:00
|
|
|
|
2011-01-06 13:28:03 +01:00
|
|
|
apidoc:
|
|
|
|
mkdir -p apidoc
|
2018-01-22 13:38:31 +01:00
|
|
|
cd doxygen && doxygen mbedtls.doxyfile
|
2011-01-06 13:28:03 +01:00
|
|
|
|
|
|
|
apidoc_clean:
|
2015-06-24 13:06:24 +02:00
|
|
|
rm -rf apidoc
|
|
|
|
endif
|
2018-01-16 14:04:05 +01:00
|
|
|
|
|
|
|
## Editor navigation files
|
2020-11-09 21:20:16 +01:00
|
|
|
C_SOURCE_FILES = $(wildcard \
|
|
|
|
3rdparty/*/include/*/*.h 3rdparty/*/include/*/*/*.h 3rdparty/*/include/*/*/*/*.h \
|
|
|
|
3rdparty/*/*.c 3rdparty/*/*/*.c 3rdparty/*/*/*/*.c 3rdparty/*/*/*/*/*.c \
|
|
|
|
include/*/*.h \
|
|
|
|
library/*.[hc] \
|
|
|
|
programs/*/*.[hc] \
|
|
|
|
tests/include/*/*.h tests/include/*/*/*.h \
|
|
|
|
tests/src/*.c tests/src/*/*.c \
|
|
|
|
tests/suites/*.function \
|
|
|
|
)
|
2020-04-02 12:10:45 +02:00
|
|
|
# Exuberant-ctags invocation. Other ctags implementations may require different options.
|
2021-01-13 13:45:30 +01:00
|
|
|
CTAGS = ctags --langmap=c:+.h.function --line-directives=no -o
|
2018-01-16 14:04:05 +01:00
|
|
|
tags: $(C_SOURCE_FILES)
|
2020-04-02 12:10:45 +02:00
|
|
|
$(CTAGS) $@ $(C_SOURCE_FILES)
|
2018-01-16 14:04:05 +01:00
|
|
|
TAGS: $(C_SOURCE_FILES)
|
2021-01-13 13:45:30 +01:00
|
|
|
etags --no-line-directive -o $@ $(C_SOURCE_FILES)
|
2020-11-20 11:50:08 +01:00
|
|
|
global: GPATH GRTAGS GSYMS GTAGS
|
2018-01-16 14:04:05 +01:00
|
|
|
GPATH GRTAGS GSYMS GTAGS: $(C_SOURCE_FILES)
|
|
|
|
ls $(C_SOURCE_FILES) | gtags -f - --gtagsconf .globalrc
|
2020-11-20 11:50:08 +01:00
|
|
|
cscope: cscope.in.out cscope.po.out cscope.out
|
2020-11-09 21:21:31 +01:00
|
|
|
cscope.in.out cscope.po.out cscope.out: $(C_SOURCE_FILES)
|
|
|
|
cscope -bq -u -Iinclude -Ilibrary $(patsubst %,-I%,$(wildcard 3rdparty/*/include)) -Itests/include $(C_SOURCE_FILES)
|
2020-11-20 11:50:08 +01:00
|
|
|
.PHONY: cscope global
|