mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 13:35:28 +00:00
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
2
Makefile
2
Makefile
|
@ -24,6 +24,8 @@ ifndef WINDOWS
|
||||||
install: no_test
|
install: no_test
|
||||||
mkdir -p $(DESTDIR)/include/mbedtls
|
mkdir -p $(DESTDIR)/include/mbedtls
|
||||||
cp -rp include/mbedtls $(DESTDIR)/include
|
cp -rp include/mbedtls $(DESTDIR)/include
|
||||||
|
mkdir -p $(DESTDIR)/include/psa
|
||||||
|
cp -rp include/psa $(DESTDIR)/include
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/lib
|
mkdir -p $(DESTDIR)/lib
|
||||||
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
||||||
|
|
Loading…
Reference in a new issue