mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-15 16:31:31 +00:00
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 $*
|
|
|