mirror of
https://github.com/DrBeef/Doom3Quest.git
synced 2024-11-28 06:42:12 +00:00
25 lines
626 B
Makefile
25 lines
626 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
|
||
|
D3QUEST_TOP_PATH := $(APPLICATIONMK_PATH)/d3es-multithread-master
|
||
|
|
||
|
APP_ALLOW_MISSING_DEPS=true
|
||
|
|
||
|
APP_SHORT_COMMANDS :=true
|
||
|
|
||
|
APP_MODULES := doom3 d3es_game
|
||
|
APP_STL := c++_shared
|
||
|
|
||
|
|