mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-20 11:11:08 +01:00
Introduce branch specific make_generated_files.py and use it in the development branch. Signed-off-by: Ronald Cron <ronald.cron@arm.com>
16 lines
571 B
Batchfile
16 lines
571 B
Batchfile
@rem Generate automatically-generated configuration-independent source files
|
|
@rem and build scripts.
|
|
@rem Requirements:
|
|
@rem * Perl must be on the PATH ("perl" command).
|
|
@rem * Python 3.8 or above must be on the PATH ("python" command).
|
|
@rem * Either a C compiler called "cc" must be on the PATH, or
|
|
@rem the "CC" environment variable must point to a C compiler.
|
|
|
|
@rem @@@@ tf-psa-crypto @@@@
|
|
cd tf-psa-crypto
|
|
python framework\scripts\make_generated_files.py || exit /b 1
|
|
cd ..
|
|
|
|
@rem @@@@ mbedtls @@@@
|
|
python scripts\make_generated_files.py || exit /b 1
|