blob: 39b2b15a9166938fd37120418e1abc73eaf61873 (
plain)
1
2
3
4
5
6
|
#!/bin/sh
export TARGET=i686-w64-mingw32
export CC=$TARGET-gcc
export CPPFLAGS="$CPPFLAGS -DDEBUG"
export CFLAGS="$CFLAGS -g"
./configure --host=$TARGET --prefix=/usr/$TARGET/usr --disable-shared
|