File: buildMingw.sh

package info (click to toggle)
mtools 4.0.17-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,320 kB
  • sloc: ansic: 18,154; sh: 3,237; makefile: 242; sed: 5
file content (16 lines) | stat: -rwxr-xr-x 364 bytes parent folder | download | duplicates (2)
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