mirror of
https://github.com/DrBeef/RTCWQuest.git
synced 2024-11-15 00:51:32 +00:00
1f5a068b27
..and almost playable in some sort of rubbish way!
22 lines
597 B
Makefile
22 lines
597 B
Makefile
# MAKEFILE_LIST specifies the current used Makefiles, of which this is the last
|
|
# one. I use that to obtain the Application.mk dir then import the root
|
|
# Application.mk.
|
|
ROOT_DIR := $(dir $(lastword $(MAKEFILE_LIST)))../../../../..
|
|
NDK_MODULE_PATH := $(ROOT_DIR)
|
|
|
|
APP_PLATFORM := android-19
|
|
|
|
APP_CFLAGS += -Wl,--no-undefined
|
|
|
|
APPLICATIONMK_PATH = $(call my-dir)
|
|
|
|
TOP_DIR := $(APPLICATIONMK_PATH)
|
|
SUPPORT_LIBS := $(APPLICATIONMK_PATH)/SupportLibs
|
|
GL4ES_PATH := $(SUPPORT_LIBS)/gl4es
|
|
|
|
APP_ALLOW_MISSING_DEPS=true
|
|
|
|
APP_MODULES := gl4es qagamearm uiarm cgamearm rtcw_client
|
|
APP_STL := c++_shared
|
|
|
|
|