summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/extract-api.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/extract-api.sh b/tools/extract-api.sh
index 1827b49..c6033c9 100755
--- a/tools/extract-api.sh
+++ b/tools/extract-api.sh
@@ -167,10 +167,14 @@ for header in \
#
DIR=$(dirname $header)
FILE=$(basename $header)
+ BASE=${header%.h}
#
for what in functions enums types callbacks variables; do
F=$FILE-$what
sed -r -n -f "$P/sed-$what" $header > $NEXT/$F
+ for more_header in "${BASE}_common.h" "${BASE}_legacy.h"; do
+ [ -e $more_header ] && sed -r -n -f "$P/sed-$what" $more_header >> $NEXT/$F
+ done
if [ -f $PREV/$F ]; then
diff -u0 $PREV/$F $NEXT/$F > $P/$F-diff
N=$(cat $P/$F-diff | wc -l)