blob: 4707c7722d66c13ede3e31eda4b10039c7abc6dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
if [ !$CC ]
then
export CC=i586-mingw32msvc-gcc
fi
if [ !$WINDRES ]
then
export WINDRES=i586-mingw32msvc-windres
fi
export PLATFORM=mingw32
export ARCH=x86
exec make $*
|