ioq3quest/cross-make-mingw64.sh
2011-06-16 22:51:12 +00:00

16 lines
189 B
Bash
Executable file

#!/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 $*