mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
88ff254f42
This includes -win clients (no clue if anything actually works yet).
17 lines
512 B
Bash
Executable file
17 lines
512 B
Bash
Executable file
#!/bin/sh -x
|
|
set -e
|
|
if test -d native; then
|
|
cd native
|
|
make $*
|
|
cd ../x86_64-w64-mingw32.static
|
|
ln -fs ../native/qfcc .
|
|
ln -fs ../native/pak .
|
|
ln -fs ../native/ruamoko/qwaq/qwaq-curses .
|
|
fi
|
|
export MINGW=/opt/mxe
|
|
export MINGW_USR=$MINGW/usr/x86_64-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
|
|
|
|
make PAK='$(top_builddir)/pak' QFCC='$(top_builddir)/qfcc' QWAQ_CURSES='$(top_builddir)/qwaq-curses' $*
|