Skip to content

Commit d5d468d

Browse files
committed
Adapt doxygen scripts to run for TF-PSA-Crypto
This commit adapts the scripts apidoc_full.sh and doxygen.sh to run for TF-PSA-Crypto out of source builds. Signed-off-by: Harry Ramsey <[email protected]>
1 parent a0ae088 commit d5d468d

File tree

2 files changed

+39
-11
lines changed

2 files changed

+39
-11
lines changed

scripts/apidoc_full.sh

+31-8
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,40 @@
1212

1313
set -eu
1414

15-
CONFIG_H='include/mbedtls/mbedtls_config.h'
15+
. $(dirname "$0")/project_detection.sh
1616

17-
if [ -r $CONFIG_H ]; then :; else
18-
echo "$CONFIG_H not found" >&2
17+
CRYPTO_CONFIG_H='include/psa/crypto_config.h'
18+
if in_mbedtls_repo; then
19+
CONFIG_H='include/mbedtls/mbedtls_config.h'
20+
CRYPTO_CONFIG_H='tf-psa-crypto/include/psa/crypto_config.h'
21+
22+
if [ -r $CONFIG_H ]; then :; else
23+
echo "$CONFIG_H not found" >&2
24+
exit 1
25+
fi
26+
fi
27+
28+
if [ -r $CRYPTO_CONFIG_H ]; then :; else
29+
echo "$CRYPTO_CONFIG_H not found" >&2
1930
exit 1
2031
fi
2132

22-
CONFIG_BAK=${CONFIG_H}.bak
23-
cp -p $CONFIG_H $CONFIG_BAK
33+
CRYPTO_CONFIG_BAK=${CRYPTO_CONFIG_H}.bak
34+
cp -p $CRYPTO_CONFIG_H $CRYPTO_CONFIG_BAK
2435

25-
scripts/config.py realfull
26-
make apidoc
36+
if in_mbedtls_repo; then
37+
CONFIG_BAK=${CONFIG_H}.bak
38+
cp -p $CONFIG_H $CONFIG_BAK
39+
scripts/config.py realfull
40+
make apidoc
41+
mv $CONFIG_BAK $CONFIG_H
42+
elif in_tf_psa_crypto_repo; then
43+
scripts/config.py realfull
44+
TF_PSA_CRYPTO_ROOT_DIR=$PWD
45+
TEMP_DIR=$(mktemp --directory)
46+
cd $TEMP_DIR
47+
cmake -DCMAKE_BUILD_TYPE:String=Check -DGEN_FILES=ON $TF_PSA_CRYPTO_ROOT_DIR
48+
make tfpsacrypto-apidoc
49+
fi
2750

28-
mv $CONFIG_BAK $CONFIG_H
51+
mv $CRYPTO_CONFIG_BAK $CRYPTO_CONFIG_H

scripts/doxygen.sh

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
# Abort on errors (and uninitialised variables)
99
set -eu
1010

11-
if [ -d library -a -d include -a -d tests ]; then :; else
12-
echo "Must be run from Mbed TLS root" >&2
11+
. $(dirname "$0")/project_detection.sh
12+
13+
if in_mbedtls_repo || in_tf_psa_crypto_repo; then :; else
14+
echo "Must be run from Mbed TLS root or TF-PSA-Crypto root" >&2
1315
exit 1
1416
fi
1517

@@ -28,5 +30,8 @@ if grep -E "(warning|error):" doc.filtered; then
2830
exit 1;
2931
fi
3032

31-
make apidoc_clean
33+
if in_mbedtls_repo; then
34+
make apidoc_clean
35+
fi
36+
3237
rm -f doc.out doc.err doc.filtered

0 commit comments

Comments
 (0)