diff options
-rwxr-xr-x | contrib/make-mingw-release.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/make-mingw-release.sh b/contrib/make-mingw-release.sh new file mode 100755 index 0000000..5551c75 --- /dev/null +++ b/contrib/make-mingw-release.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +VER=`cat ../version` + +for target in w32 w64; do + mkdir anytun-$VER-$target + cp anytun-$target/*.exe anytun-$VER-$target + cp boost-$target/lib/libboost_{date_time,serialization,system,thread_win32}.dll anytun-$VER-$target + cp openssl-$target/bin/libeay32.dll anytun-$VER-$target + cp anytun-example.bat anytun-$VER-$target + cp ../{AUTHORS,ChangeLog,LICENSE,README,version} anytun-$VER-$target + cp -r tap?? anytun-$VER-$target + rm -rf anytun-$VER-$target/tap*/.svn + + zip -r anytun-$VER-$target.zip anytun-$VER-$target + rm -rf anytun-$VER-$target +done + +exit 0 |