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