diff options
Diffstat (limited to 'tools/extract-api.sh')
-rwxr-xr-x | tools/extract-api.sh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tools/extract-api.sh b/tools/extract-api.sh index 04d51d2..00c3a5d 100755 --- a/tools/extract-api.sh +++ b/tools/extract-api.sh @@ -15,6 +15,7 @@ for header in \ "${INCLUDE}/evas-1/Evas_GL.h" \ "${INCLUDE}/ecore-1/Ecore.h" \ "${INCLUDE}/ecore-1/Ecore_Con.h" \ + "${INCLUDE}/ecore-1/Ecore_Input.h" \ "${INCLUDE}/ecore-1/Ecore_Evas.h" \ "${INCLUDE}/ecore-1/Ecore_Fb.h" \ "${INCLUDE}/ecore-1/Ecore_File.h" \ @@ -26,11 +27,9 @@ for header in \ # mv $CURRENT/$FILE-* $PREV/ 2>/dev/null # - for what in functions enums structs callbacks; do - cat $header | sed -r -n -f sed-$what > $CURRENT/$FILE-$what - done - # - for F in $FILE-funcs $FILE-enums $FILE-structs ; do + for what in functions enums types callbacks; do + F=$FILE-$what + cat $header | sed -r -n -f sed-$what > $CURRENT/$F if [ -f $PREV/$F ]; then diff -u0 $PREV/$F $CURRENT/$F > $F-diff N=$(cat $F-diff | wc -l) |