File: buildMingw.sh

package info (click to toggle)
udpcast 20100130-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 828 kB
  • ctags: 948
  • sloc: ansic: 7,530; sh: 2,838; perl: 227; makefile: 114
file content (16 lines) | stat: -rwxr-xr-x 346 bytes parent folder | download | duplicates (4)
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
make