summaryrefslogtreecommitdiff
path: root/cross-make-mingw.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cross-make-mingw.sh')
-rwxr-xr-xcross-make-mingw.sh45
1 files changed, 0 insertions, 45 deletions
diff --git a/cross-make-mingw.sh b/cross-make-mingw.sh
deleted file mode 100755
index f78aa264..00000000
--- a/cross-make-mingw.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-# Note: This works in Linux and cygwin
-
-if [ "$ARCH" = "x86_64" ];
-then
- CMD_PREFIX="amd64-mingw32msvc x86_64-w64-mingw32"
-else
- CMD_PREFIX="i586-mingw32msvc i686-w64-mingw32"
- export ARCH=x86
-fi
-
-if [ "$CC" = "cc" ] || [ "$CC" = "gcc" ];
-then
- CC=
-fi
-
-if [ "X$CC" = "X" ]; then
- for check in $CMD_PREFIX; do
- full_check="${check}-gcc"
- which "$full_check" > /dev/null 2>&1
- if [ "$?" = "0" ]; then
- export CC="$full_check"
- fi
- done
-fi
-
-if [ "X$WINDRES" = "X" ]; then
- for check in $CMD_PREFIX; do
- full_check="${check}-windres"
- which "$full_check" > /dev/null 2>&1
- if [ "$?" = "0" ]; then
- export WINDRES="$full_check"
- fi
- done
-fi
-
-if [ "X$WINDRES" = "X" -o "X$CC" = "X" ]; then
- echo "Error: Must define or find WINDRES and CC"
- exit 1
-fi
-
-export PLATFORM=mingw32
-
-exec make $*