Skip to content

Commit

Permalink
Update makerelease
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuhiro-t committed Apr 15, 2016
1 parent a474183 commit 6e6d0e3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions makerelease
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ PREV_VERSION=$2
git checkout refs/tags/release-$VERSION
git log --pretty=fuller --date=short refs/tags/release-$PREV_VERSION..HEAD > ChangeLog

autoreconf -i

./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
make distclean
Expand All @@ -19,21 +21,21 @@ make distclean
export HOST=i686-w64-mingw32
export LABEL=win-32bit
./mingw-config
make -j3
make -j8
./mingw-release
make distclean

# mingw 64bit
export HOST=x86_64-w64-mingw32
export LABEL=win-64bit
./mingw-config
make -j3
make -j8
./mingw-release
make distclean

# android
./android-config
./android-make -j3
./android-make -j8
./android-release
make distclean

Expand Down

0 comments on commit 6e6d0e3

Please sign in to comment.