mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-22 20:11:48 +00:00
11 lines
157 B
Bash
11 lines
157 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export CC=i586-mingw32msvc-gcc
|
||
|
export WINDRES=i586-mingw32msvc-windres
|
||
|
export PLATFORM=mingw32
|
||
|
if [ !$ARCH ]
|
||
|
then
|
||
|
export ARCH=x86
|
||
|
fi
|
||
|
exec make $*
|