Makefile: Install PSA headers
When running `make install`, it can be desirable for the PSA Crypto header files to get installed as well, so that the PSA portions of the library are usable.
This commit is contained in:
parent
852dac2df8
commit
3c7cc5eb18
1 changed files with 2 additions and 0 deletions
2
Makefile
2
Makefile
|
@ -24,6 +24,8 @@ ifndef WINDOWS
|
|||
install: no_test
|
||||
mkdir -p $(DESTDIR)/include/mbedtls
|
||||
cp -rp include/mbedtls $(DESTDIR)/include
|
||||
mkdir -p $(DESTDIR)/include/psa
|
||||
cp -rp include/psa $(DESTDIR)/include
|
||||
|
||||
mkdir -p $(DESTDIR)/lib
|
||||
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
||||
|
|
Loading…
Reference in a new issue