mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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).
16 lines
433 B
Bash
Executable file
16 lines
433 B
Bash
Executable file
#!/bin/sh -x
|
|
set -e
|
|
if test -d native; then
|
|
cd native
|
|
make $*
|
|
cd ../i686-pc-mingw32
|
|
ln -fs ../native/tools/qfcc/source/qfcc .
|
|
ln -fs ../native/tools/pak/pak .
|
|
fi
|
|
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
|
|
|
|
make PAK='$(top_builddir)/pak' QFCC='$(top_builddir)/qfcc' $*
|