Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cross-make.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cross-make.sh')
-rwxr-xr-xcross-make.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/cross-make.sh b/cross-make.sh
new file mode 100755
index 0000000..9d99e43
--- /dev/null
+++ b/cross-make.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+# copied from http://www.libsdl.org/extras/win32/cross/README.txt
+
+PREFIX=/usr/local/cross-tools
+TARGET=i386-mingw32msvc
+PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
+export PATH
+exec make $*