mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
16 lines
187 B
Bash
Executable file
16 lines
187 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ !$CC ]
|
|
then
|
|
export CC=i586-mingw32msvc-gcc
|
|
fi
|
|
|
|
if [ !$WINDRES ]
|
|
then
|
|
export WINDRES=i586-mingw32msvc-windres
|
|
fi
|
|
|
|
export PLATFORM=mingw32
|
|
export ARCH=x86
|
|
|
|
exec make $*
|