mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 16:37:30 +00:00
0976ff8582
CC_FOR_BUILD is the recommended name these days (HOST_CC was from an old gcc version, and is confusing anyway). Also, CC_FOR_BUILD should be set by configure.
6 lines
171 B
Bash
Executable file
6 lines
171 B
Bash
Executable file
#!/bin/sh -x
|
|
MINGW=/home/bill/src/mingw/mingw-cross-env-2.18
|
|
export PKG_CONFIG_LIBDIR=$MINGW/usr/lib/pkgconfig
|
|
export PATH=$MINGW/usr/bin:$PATH
|
|
|
|
make PAK=pak QFCC=qfcc $*
|