mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 23:31:45 +00:00
11 lines
162 B
Bash
11 lines
162 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export CC=amd64-mingw32msvc-gcc
|
||
|
export WINDRES=amd64-mingw32msvc-windres
|
||
|
export PLATFORM=mingw32
|
||
|
if [ !$ARCH ]
|
||
|
then
|
||
|
export ARCH=x86_64
|
||
|
fi
|
||
|
exec make $*
|