mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-17 02:11:35 +00:00
5fdad1c79c
This is the beginnings of android support :)
8 lines
182 B
Bash
Executable file
8 lines
182 B
Bash
Executable file
#!/bin/sh -x
|
|
HOST_CC=gcc
|
|
export HOST_CC
|
|
ANDROID_NDK_ROOT=/home/bill/Downloads/android-ndk-r7
|
|
export PATH=$ANDROID_NDK_ROOT/android-14-toolchain/bin:$PATH
|
|
|
|
make PAK=pak QFCC=qfcc $*
|
|
|