mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 08:27:39 +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.
7 lines
232 B
Bash
Executable file
7 lines
232 B
Bash
Executable file
#!/bin/sh -x
|
|
export ANDROID_NDK_ROOT=/home/bill/Downloads/android-ndk-r7
|
|
export ANDROID_SYSROOT=$ANDROID_NDK_ROOT/android-14-toolchain/sysroot
|
|
export PATH=$ANDROID_NDK_ROOT/android-14-toolchain/bin:$PATH
|
|
|
|
make PAK=pak QFCC=qfcc $*
|
|
|