mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
10 lines
193 B
Bash
10 lines
193 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH \
|
||
|
./configure \
|
||
|
--host=i386-mingw32msvc \
|
||
|
--target=i386-mingw32msvc \
|
||
|
--build=i386-linux \
|
||
|
$*
|
||
|
|