aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGilles Peskine <Gilles.Peskine@arm.com>2020-02-26 19:05:19 +0100
committerRonald Cron <ronald.cron@arm.com>2020-03-19 14:07:55 +0100
commit722a7e69404a5265c63ed2afcadec196b6e53877 (patch)
tree22b5d7e5989a4c31b2f4bfe65a5d10619711d659 /Makefile
parent12230eb5c8150359d7f2fd99c36fb334cc375b2c (diff)
downloadmbedtls-722a7e69404a5265c63ed2afcadec196b6e53877.zip
mbedtls-722a7e69404a5265c63ed2afcadec196b6e53877.tar.gz
mbedtls-722a7e69404a5265c63ed2afcadec196b6e53877.tar.bz2
Revert "Only build libmbedcrypto"
This reverts commit 8298d70beecb6c3c1a375954e03f4ed1a80efc0a. Conflicts: * library/Makefile: removal of SOEXT_X509 and SOEXT_TLS vs change of value of SOEXT_CRYPTO. Keep all, with the new value of SOEXT_CRYPTO.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4fd7f8e..026c637 100644
--- a/Makefile
+++ b/Makefile
@@ -27,6 +27,8 @@ install: no_test
cp -rp include/psa $(DESTDIR)/include
mkdir -p $(DESTDIR)/lib
+ cp -RP library/libmbedtls.* $(DESTDIR)/lib
+ cp -RP library/libmbedx509.* $(DESTDIR)/lib
cp -RP library/libmbedcrypto.* $(DESTDIR)/lib
mkdir -p $(DESTDIR)/bin
@@ -40,6 +42,8 @@ install: no_test
uninstall:
rm -rf $(DESTDIR)/include/mbedtls
+ rm -f $(DESTDIR)/lib/libmbedtls.*
+ rm -f $(DESTDIR)/lib/libmbedx509.*
rm -f $(DESTDIR)/lib/libmbedcrypto.*
for p in programs/*/* ; do \