mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
21 lines
550 B
Bash
Executable file
21 lines
550 B
Bash
Executable file
#!/bin/sh -x
|
|
set -e
|
|
mkdir -p native i686-w64-mingw32.static
|
|
cd native
|
|
../../configure \
|
|
--enable-silent-rules \
|
|
--disable-shared \
|
|
--without-clients \
|
|
--without-servers \
|
|
--with-tools=qfcc,pak,qwaq
|
|
cd ../i686-w64-mingw32.static
|
|
export MINGW=/opt/mxe
|
|
export MINGW_USR=$MINGW/usr/i686-w64-mingw32.static
|
|
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
|
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
|
export PATH=$MINGW/usr/bin:$PATH
|
|
export QCSYSPREFIX=$MINGW_USR
|
|
../../configure \
|
|
--host=i686-w64-mingw32.static \
|
|
--disable-shared \
|
|
$*
|