Use cmake --build instead of make

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2025-09-10 16:30:49 +02:00
parent c07d90a2ef
commit b5a1095c25
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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
+2 -2
View File
@@ -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,