ioq3/cross-make-mingw64.sh

17 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 $*