mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-06-05 21:15:09 +00:00
Use cmake --build instead of make
Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
@@ -50,9 +50,9 @@ else
|
||||
cd doxygen/build-apidoc-full
|
||||
cmake -DCMAKE_BUILD_TYPE:String=Check -DGEN_FILES=ON $ROOT_DIR
|
||||
if in_mbedtls_repo; then
|
||||
make mbedtls-apidoc
|
||||
cmake --build . --target mbedtls-apidoc
|
||||
else
|
||||
make tfpsacrypto-apidoc
|
||||
cmake --build . --target tfpsacrypto-apidoc
|
||||
fi
|
||||
cd $ROOT_DIR
|
||||
# The documentation is built in the source tree thus we can delete the
|
||||
|
||||
@@ -810,7 +810,7 @@ class TFPSACryptoCodeParser(CodeParser):
|
||||
check=True
|
||||
)
|
||||
subprocess.run(
|
||||
["make"],
|
||||
["cmake", "--build", "."],
|
||||
env=my_environment,
|
||||
universal_newlines=True,
|
||||
stdout=subprocess.PIPE,
|
||||
@@ -981,7 +981,7 @@ class MBEDTLSCodeParser(CodeParser):
|
||||
check=True
|
||||
)
|
||||
subprocess.run(
|
||||
["make"],
|
||||
["cmake", "--build", "."],
|
||||
env=my_environment,
|
||||
universal_newlines=True,
|
||||
stdout=subprocess.PIPE,
|
||||
|
||||
Reference in New Issue
Block a user