diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-13 17:30:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-13 17:39:18 +0300 |
commit | 1644bda7305ac2cd24d605da42602d0d63a14cc0 (patch) | |
tree | cabcddd08ab9523241a77e85a06e0fc5e240cc80 /build/win_make | |
parent | 9abb84a68de92f8cd78f95821a7238d86f1169dd (diff) | |
download | plus-1644bda7305ac2cd24d605da42602d0d63a14cc0.tar.gz plus-1644bda7305ac2cd24d605da42602d0d63a14cc0.tar.bz2 plus-1644bda7305ac2cd24d605da42602d0d63a14cc0.tar.xz plus-1644bda7305ac2cd24d605da42602d0d63a14cc0.zip |
Split mingw build scripts. With flags and without flags.
Diffstat (limited to 'build/win_make')
-rwxr-xr-x | build/win_make | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/build/win_make b/build/win_make new file mode 100755 index 000000000..dbeb65888 --- /dev/null +++ b/build/win_make @@ -0,0 +1,16 @@ +#!/bin/bash + +source ./winvars.sh || exit 1 + +mkdir tmp +cd .. + +dir=`pwd` + +autoreconf -i || exit 1 +cd build/tmp +../../configure \ +--host=${CROSS} \ +--enable-werror || exit 1 + +make -j9 2>../make2.log || exit 1 |