summaryrefslogtreecommitdiff
path: root/buildMingw.sh
blob: 3414f3dcdc3d2b09a7d205b5686a8a15a149a4e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# Build Mingw (Windows) executable
#
# For this you meed the mingw cross-compiler to be installed
#
# You may download the RPMs from http://mirzam.it.vu.nl/mingw/
# All 4 RPM's are needed:
#  mingw-binutils
#  mingw-gcc-core
#  mingw-runtime
#  mingw-w32api

dir=`dirname $0`
$dir/configure --srcdir $dir  --host i586-mingw32msvc --disable-floppyd
make