| 123456789101112131415161718192021222324252627282930313233343536373839404142 | #!/bin/sh -eif [ -z "$ANDROID_HOME" ]; then    echo 'No $ANDROID_HOME specified.'    exit 1fiVERSION=$1PREV_VERSION=$2git checkout refs/tags/release-$VERSIONgit log --pretty=fuller --date=short refs/tags/release-$PREV_VERSION..HEAD > ChangeLogautoreconf -i./configure && \    make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"make distclean# mingw 32bitexport HOST=i686-w64-mingw32export LABEL=win-32bit./mingw-configmake -j8./mingw-releasemake distclean# mingw 64bitexport HOST=x86_64-w64-mingw32export LABEL=win-64bit./mingw-configmake -j8./mingw-releasemake distclean# android./android-config./android-make -j8./android-releasemake distclean# OSX builds are created separately using makerelease-osx.mk
 |