mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 08:50:58 +00:00
f5eec3d930
Running make might trigger a reconfig, so the vars are always necessary.
9 lines
259 B
Bash
Executable file
9 lines
259 B
Bash
Executable file
#!/bin/sh -x
|
|
HOST_CC=gcc
|
|
export HOST_CC
|
|
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 $*
|
|
|