ioq3/cross-make-mingw64.sh

17 lines
189 B
Bash
Raw Normal View History

#!/bin/sh
if [ !$CC ]
then
export CC=amd64-mingw32msvc-gcc
fi
if [ !$WINDRES ]
then
export WINDRES=amd64-mingw32msvc-windres
fi
export PLATFORM=mingw32
2011-06-16 22:51:12 +00:00
export ARCH=x64
exec make $*