mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
fb00391749
I got MXE to build (took only an envvar and a couple packages, yay doc reading), so I thought it time to update the scripts to use it (they assume /opt/mxe).
19 lines
458 B
Bash
Executable file
19 lines
458 B
Bash
Executable file
#!/bin/sh -x
|
|
set -e
|
|
mkdir -p native i686-pc-mingw32
|
|
cd native
|
|
../../configure \
|
|
--disable-shared \
|
|
--without-clients \
|
|
--without-servers \
|
|
--with-tools=qfcc,pak
|
|
cd ../i686-pc-mingw32
|
|
export MINGW=/opt/mxe
|
|
export MINGW_USR=$MINGW/usr/i686-pc-mingw32
|
|
export PKG_CONFIG_LIBDIR=$MINGW_USR/lib/pkgconfig
|
|
export PKG_CONFIG_PATH=$MINGW_USR/local/lib/pkgconfig
|
|
export PATH=$MINGW/usr/bin:$PATH
|
|
../../configure \
|
|
--host=i686-pc-mingw32 \
|
|
--disable-shared \
|
|
$*
|