mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-13 07:57:23 +00:00
10 lines
162 B
Bash
Executable file
10 lines
162 B
Bash
Executable file
#!/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 $*
|