mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
9 lines
159 B
Bash
9 lines
159 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
PREFIX=/usr/local/cross-tools
|
||
|
TARGET=i386-mingw32msvc
|
||
|
PATH="$PREFIX/bin:$PREFIX/$TARGET/bin:$PATH"
|
||
|
export PATH
|
||
|
export PLATFORM=mingw32
|
||
|
exec make $*
|