2016-02-08 22:42:41 +01:00
|
|
|
################################################################################
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-29 10:11:26 +02:00
|
|
|
OS := $(shell uname)
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
# compile with GPROF
|
|
|
|
# GPROF = 1
|
|
|
|
|
2016-02-12 04:10:44 +01:00
|
|
|
# build for build platform
|
2016-03-21 00:38:25 +01:00
|
|
|
APP_PLATFORM = android-19
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
ANDR_ROOT = $(shell pwd)
|
|
|
|
PROJ_ROOT = $(shell realpath $(ANDR_ROOT)/../..)
|
|
|
|
APP_ROOT = $(ANDR_ROOT)/src/main
|
2014-04-21 14:10:59 +02:00
|
|
|
|
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
VERSION_MAJOR := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 16:38:36 +02:00
|
|
|
grep ^set\(VERSION_MAJOR\ | sed 's/)/ /' | cut -f2 -d' ')
|
2016-04-13 20:14:04 +02:00
|
|
|
VERSION_MINOR := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 16:38:36 +02:00
|
|
|
grep ^set\(VERSION_MINOR\ | sed 's/)/ /' | cut -f2 -d' ')
|
2016-04-13 20:14:04 +02:00
|
|
|
VERSION_PATCH := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 16:38:36 +02:00
|
|
|
grep ^set\(VERSION_PATCH\ | sed 's/)/ /' | cut -f2 -d' ')
|
2016-03-18 23:16:30 +01:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
################################################################################
|
2016-02-07 02:11:12 +01:00
|
|
|
# toolchain config for ARMv7
|
2015-03-07 13:34:31 +01:00
|
|
|
################################################################################
|
2016-02-08 22:42:41 +01:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
TARGET_HOST = arm-linux
|
|
|
|
TARGET_HOST2 = arm-linux
|
2016-09-18 02:16:16 +02:00
|
|
|
TARGET_ABI = armeabi-v7a
|
2016-09-13 14:21:40 +02:00
|
|
|
TARGET_LIBDIR = armeabi-v7a
|
|
|
|
TARGET_TOOLCHAIN = arm-linux-androideabi
|
2016-09-18 02:16:16 +02:00
|
|
|
TARGET_CFLAGS_ADDON = -mfpu=vfpv3-d16 -march=armv7-a -Ofast -fdata-sections -ffunction-sections -fmodulo-sched -fmodulo-sched-allow-regmoves -fvisibility=hidden
|
2016-09-13 14:21:40 +02:00
|
|
|
TARGET_CXXFLAGS_ADDON = $(TARGET_CFLAGS_ADDON)
|
2016-09-18 02:16:16 +02:00
|
|
|
TARGET_LDFLAGS_ADDON = -Wl,--no-warn-mismatch,--gc-sections
|
2016-09-13 14:21:40 +02:00
|
|
|
TARGET_ARCH = armv7
|
|
|
|
CROSS_PREFIX = arm-linux-androideabi-
|
|
|
|
COMPILER_VERSION = 4.9
|
2015-03-07 13:34:31 +01:00
|
|
|
|
2016-02-08 22:42:41 +01:00
|
|
|
################################################################################
|
|
|
|
# toolchain config for ARMv8
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# TARGET_HOST = aarch64-linux
|
|
|
|
# TARGET_HOST2 = arm-linux
|
|
|
|
# TARGET_ABI = arm64-v8a
|
|
|
|
# TARGET_LIBDIR = arm64-v8a
|
2016-03-21 00:38:25 +01:00
|
|
|
# TARGET_TOOLCHAIN = aarch64-linux-android
|
|
|
|
# TARGET_CFLAGS_ADDON = -march=armv8-a -Ofast -fdata-sections -ffunction-sections -fmodulo-sched -fmodulo-sched-allow-regmoves
|
2016-02-08 22:42:41 +01:00
|
|
|
# TARGET_CXXFLAGS_ADDON = $(TARGET_CFLAGS_ADDON)
|
2016-03-21 00:38:25 +01:00
|
|
|
# TARGET_LDFLAGS_ADDON = -Wl,--no-warn-mismatch,--gc-sections
|
|
|
|
# TARGET_ARCH = arm64
|
2016-02-08 22:42:41 +01:00
|
|
|
# CROSS_PREFIX = aarch64-linux-android-
|
2016-04-29 09:11:25 +02:00
|
|
|
# COMPILER_VERSION = 4.9
|
2016-02-08 22:42:41 +01:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
################################################################################
|
2015-11-10 18:18:32 +01:00
|
|
|
# toolchain config for x86
|
2014-04-21 14:10:59 +02:00
|
|
|
################################################################################
|
2016-02-08 22:42:41 +01:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
# TARGET_HOST = x86-linux
|
|
|
|
# TARGET_HOST2 = x86-linux
|
|
|
|
# TARGET_ABI = x86
|
|
|
|
# TARGET_LIBDIR = x86
|
|
|
|
# TARGET_TOOLCHAIN = x86
|
|
|
|
# TARGET_CFLAGS_ADDON = -Ofast -fdata-sections -ffunction-sections -fmodulo-sched -fmodulo-sched-allow-regmoves -fvisibility=hidden
|
|
|
|
# TARGET_CXXFLAGS_ADDON = $(TARGET_CFLAGS_ADDON)
|
|
|
|
# TARGET_LDFLAGS_ADDON = -Wl,--no-warn-mismatch,--gc-sections
|
|
|
|
# TARGET_ARCH = x86
|
|
|
|
# CROSS_PREFIX = i686-linux-android-
|
|
|
|
# COMPILER_VERSION = 4.9
|
2014-04-21 14:10:59 +02:00
|
|
|
|
|
|
|
################################################################################
|
2016-02-08 22:42:41 +01:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
ASSETS_TIMESTAMP = deps/assets_timestamp
|
|
|
|
|
2016-09-08 23:43:05 +02:00
|
|
|
OPENAL_URL = https://github.com/MoNTE48/openal-soft/releases/download/$(OPENAL_VER)/$(OPENAL_VER).zip
|
|
|
|
OPENAL_VER = openal-soft-1.17.2-dev
|
2016-04-29 09:11:25 +02:00
|
|
|
OPENAL_FOLDER = $(ANDR_ROOT)/deps/openal-soft
|
|
|
|
OPENAL_DIR = $(ANDR_ROOT)/deps/openal-soft/android
|
2016-03-31 23:26:03 +02:00
|
|
|
OPENAL_LIB = $(OPENAL_DIR)/libs/$(TARGET_ABI)/libopenal.so
|
2014-04-21 14:10:59 +02:00
|
|
|
OPENAL_TIMESTAMP = $(OPENAL_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
OPENAL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/openal_timestamp
|
2016-09-08 23:43:05 +02:00
|
|
|
#OPENAL_URL_GIT = https://github.com/MoNTE48/openal-soft
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-29 09:11:25 +02:00
|
|
|
VORBIS_DIR = $(ANDR_ROOT)/deps/libvorbis-android
|
2016-04-08 19:43:15 +02:00
|
|
|
VORBIS_LIB = $(VORBIS_DIR)/obj/local/$(TARGET_ABI)/libvorbis.a
|
2016-03-31 23:26:03 +02:00
|
|
|
VORBIS_TIMESTAMP = $(VORBIS_DIR)/timestamp
|
2016-04-29 09:11:25 +02:00
|
|
|
VORBIS_TIMESTAMP_INT = $(ANDR_ROOT)/deps/vorbis_timestamp
|
2016-03-31 23:26:03 +02:00
|
|
|
VORBIS_URL_GIT = https://github.com/MoNTE48/libvorbis-android
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-03-04 14:14:34 +01:00
|
|
|
IRRLICHT_COMMIT = 58fa0cf3419c2733159fc3c6253634bedada3bfe
|
2016-04-29 09:11:25 +02:00
|
|
|
IRRLICHT_DIR = $(ANDR_ROOT)/deps/irrlicht
|
2016-03-04 14:14:34 +01:00
|
|
|
IRRLICHT_LIB = $(IRRLICHT_DIR)/lib/Android/libIrrlicht.a
|
|
|
|
IRRLICHT_TIMESTAMP = $(IRRLICHT_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
IRRLICHT_TIMESTAMP_INT = $(ANDR_ROOT)/deps/irrlicht_timestamp
|
2016-03-04 14:14:34 +01:00
|
|
|
IRRLICHT_URL_HTTP = https://github.com/zaki/irrlicht/archive/$(IRRLICHT_COMMIT).zip
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-21 00:53:17 +02:00
|
|
|
# not used now
|
2016-05-12 00:52:29 +02:00
|
|
|
OPENSSL_VERSION = 1.0.2h
|
2016-04-29 09:11:25 +02:00
|
|
|
OPENSSL_DIR = $(ANDR_ROOT)/deps/openssl
|
2015-01-03 23:49:46 +01:00
|
|
|
OPENSSL_LIB = $(OPENSSL_DIR)/libssl.so.1.0.0
|
2016-03-04 14:14:34 +01:00
|
|
|
OPENSSL_TIMESTAMP = $(OPENSSL_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
OPENSSL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/openssl_timestamp
|
2016-05-12 02:11:27 +02:00
|
|
|
OPENSSL_URL = https://www.openssl.org/source/openssl-$(OPENSSL_VERSION).tar.gz
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
CURL_VERSION = 7.50.2
|
2016-04-29 09:11:25 +02:00
|
|
|
CURL_DIR = $(ANDR_ROOT)/deps/curl
|
2014-04-21 14:10:59 +02:00
|
|
|
CURL_LIB = $(CURL_DIR)/lib/.libs/libcurl.a
|
|
|
|
CURL_TIMESTAMP = $(CURL_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
CURL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/curl_timestamp
|
2016-05-02 05:09:17 +02:00
|
|
|
CURL_URL_HTTP = http://dl.uxnr.de/mirror/curl/curl-${CURL_VERSION}.tar.bz2
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
MPIR_VERSION = 2.7.2
|
|
|
|
MPIR_DIR = $(ANDR_ROOT)/deps/mpir
|
2016-05-13 20:58:38 +02:00
|
|
|
MPIR_LIB = $(MPIR_DIR)/usr/local/lib/libmpir.a
|
2016-05-03 03:21:56 +02:00
|
|
|
MPIR_TIMESTAMP = $(MPIR_DIR)/timestamp
|
|
|
|
MPIR_TIMESTAMP_INT = $(ANDR_ROOT)/deps/mpir_timestamp
|
|
|
|
MPIR_URL_HTTP = http://mpir.org/mpir-$(MPIR_VERSION).tar.bz2
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
FREETYPE_VERSION = 2.7
|
2016-04-29 09:11:25 +02:00
|
|
|
FREETYPE_DIR = $(ANDR_ROOT)/deps/freetype
|
2016-02-09 13:58:21 +01:00
|
|
|
FREETYPE_LIB = $(FREETYPE_DIR)/objs/.libs/libfreetype.a
|
|
|
|
FREETYPE_TIMESTAMP = $(FREETYPE_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
FREETYPE_TIMESTAMP_INT = $(ANDR_ROOT)/deps/freetype_timestamp
|
2016-03-28 19:08:34 +02:00
|
|
|
FREETYPE_URL_HTTP = http://download.savannah.gnu.org/releases/freetype/freetype-$(FREETYPE_VERSION).tar.bz2
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2015-11-10 12:49:24 +01:00
|
|
|
ICONV_VERSION = 1.14
|
2016-04-29 09:11:25 +02:00
|
|
|
ICONV_DIR = $(ANDR_ROOT)/deps/libiconv
|
2016-03-04 14:14:34 +01:00
|
|
|
ICONV_LIB = $(ICONV_DIR)/lib/.libs/libiconv.a
|
|
|
|
ICONV_TIMESTAMP = $(ICONV_DIR)/timestamp
|
2016-04-13 20:14:04 +02:00
|
|
|
ICONV_TIMESTAMP_INT = $(ANDR_ROOT)/deps/iconv_timestamp
|
2016-05-12 02:11:27 +02:00
|
|
|
ICONV_URL_HTTP = https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$(ICONV_VERSION).tar.gz
|
2015-11-10 12:49:24 +01:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
SQLITE3_VERSION = 3140200
|
2016-04-29 09:11:25 +02:00
|
|
|
SQLITE3_DIR = $(ANDR_ROOT)/deps/sqlite
|
2016-05-15 15:30:09 +02:00
|
|
|
SQLITE3_URL = https://www.sqlite.org/2016/sqlite-amalgamation-$(SQLITE3_VERSION).zip
|
2016-03-04 14:14:34 +01:00
|
|
|
|
|
|
|
LUAJIT_GIT_BRANCH = v2.1
|
2016-04-29 09:11:25 +02:00
|
|
|
LUAJIT_DIR = $(ANDR_ROOT)/deps/luajit
|
2016-03-04 14:14:34 +01:00
|
|
|
LUAJIT_LIB = $(LUAJIT_DIR)src/libluajit.a
|
|
|
|
LUAJIT_TIMESTAMP = $(LUAJIT_DIR)/timestamp
|
2016-04-29 09:11:25 +02:00
|
|
|
LUAJIT_TIMESTAMP_INT = $(ANDR_ROOT)/deps/luajit_timestamp
|
2016-03-04 14:14:34 +01:00
|
|
|
LUAJIT_URL_GIT = https://github.com/LuaJIT/LuaJIT.git
|
2015-01-07 01:01:03 +01:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
#GNUINTL_DIR = $(ANDR_ROOT)/deps/gnuintl
|
|
|
|
#GNUINTL_LIB = $(LUAJIT_DIR)src/gnuintl.a
|
|
|
|
#GNUINTL_TIMESTAMP = $(GNUINTL_DIR)/timestamp
|
|
|
|
#GNUINTL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/gnuintl_timestamp
|
|
|
|
#GNUINTL_URL_GIT = https://github.com/LuaJIT/LuaJIT.git
|
|
|
|
|
2016-02-08 22:42:41 +01:00
|
|
|
################################################################################
|
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
ANDROID_SDK = $(shell grep '^sdk\.dir' local.properties | sed 's/^.*=[[:space:]]*//')
|
|
|
|
ANDROID_NDK = $(shell grep '^ndk\.dir' local.properties | sed 's/^.*=[[:space:]]*//')
|
|
|
|
NDK_MODULE_PATH = $(ANDROID_NDK)/toolchains
|
2014-04-21 14:10:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
.PHONY : debug release reconfig delconfig \
|
|
|
|
irrlicht_download clean_irrlicht irrlicht \
|
2015-01-07 01:01:03 +01:00
|
|
|
clean_assets assets sqlite3_download \
|
2014-04-21 14:10:59 +02:00
|
|
|
freetype_download clean_freetype freetype \
|
2016-03-04 14:14:34 +01:00
|
|
|
luajit_download clean_luajit luajit \
|
2016-09-13 14:21:40 +02:00
|
|
|
# gnuintl_download clean_gnuintl gnuintl \
|
2014-04-21 14:10:59 +02:00
|
|
|
apk clean_apk \
|
|
|
|
clean_all clean prep_srcdir \
|
2016-04-13 20:14:04 +02:00
|
|
|
install_debug install_release envpaths all \
|
2016-03-04 14:14:34 +01:00
|
|
|
$(ASSETS_TIMESTAMP) $(LUAJIT_TIMESTAMP) \
|
2016-03-31 23:26:03 +02:00
|
|
|
$(OPENAL_TIMESTAMP) $(VORBIS_TIMESTAMP) \
|
2014-04-21 14:10:59 +02:00
|
|
|
$(IRRLICHT_TIMESTAMP) $(CURL_TIMESTAMP) \
|
2016-09-13 14:21:40 +02:00
|
|
|
# $(OPENSSL_TIMESTAMP) \
|
|
|
|
# $(GNUINTL_TIMESTAMP) \
|
2016-04-13 20:14:04 +02:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version.h \
|
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
debug : local.properties
|
2014-04-21 14:10:59 +02:00
|
|
|
export NDEBUG=; \
|
|
|
|
export BUILD_TYPE=debug; \
|
2015-03-17 15:48:48 +01:00
|
|
|
$(MAKE) apk
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
all : debug release
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
release : local.properties
|
2014-04-21 14:10:59 +02:00
|
|
|
@export NDEBUG=1; \
|
|
|
|
export BUILD_TYPE=release; \
|
2015-03-17 15:48:48 +01:00
|
|
|
$(MAKE) apk
|
2014-04-21 14:10:59 +02:00
|
|
|
|
|
|
|
reconfig: delconfig
|
2016-04-13 20:14:04 +02:00
|
|
|
@$(MAKE) local.properties
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
delconfig:
|
|
|
|
$(RM) local.properties
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
local.properties:
|
2014-04-21 14:10:59 +02:00
|
|
|
@echo "Please specify path of ANDROID NDK"; \
|
2016-04-13 20:14:04 +02:00
|
|
|
echo "e.g. $$HOME/Android/ndk-r11c/"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
read ANDROID_NDK ; \
|
|
|
|
if [ ! -d $$ANDROID_NDK ] ; then \
|
|
|
|
echo "$$ANDROID_NDK is not a valid folder"; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2016-04-13 20:14:04 +02:00
|
|
|
echo "ndk.dir = $$ANDROID_NDK" > local.properties; \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "Please specify path of ANDROID SDK"; \
|
2016-04-13 20:14:04 +02:00
|
|
|
echo "e.g. $$HOME/Android/sdk/"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
read SDKFLDR ; \
|
|
|
|
if [ ! -d $$SDKFLDR ] ; then \
|
|
|
|
echo "$$SDKFLDR is not a valid folder"; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2016-04-13 20:14:04 +02:00
|
|
|
echo "sdk.dir = $$SDKFLDR" >> local.properties;
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
|
|
|
|
$(OPENAL_TIMESTAMP) : openal_download
|
|
|
|
@LAST_MODIF=$$(find ${OPENAL_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
2016-03-04 14:14:34 +01:00
|
|
|
touch ${OPENAL_TIMESTAMP}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
openal_download :
|
2016-02-12 04:10:44 +01:00
|
|
|
@if [ ! -d ${OPENAL_DIR} ] ; then \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "openal sources missing, downloading..."; \
|
2016-04-13 20:14:04 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2016-09-08 23:43:05 +02:00
|
|
|
# git clone ${OPENAL_URL_GIT} || exit 1; \
|
|
|
|
wget ${OPENAL_URL} || exit 1; \
|
|
|
|
unzip ${OPENAL_VER}.zip -d openal-soft || exit 1; \
|
|
|
|
rm ${OPENAL_VER}.zip || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
openal : $(OPENAL_LIB)
|
|
|
|
|
2016-02-12 04:10:44 +01:00
|
|
|
$(OPENAL_LIB): $(OPENAL_TIMESTAMP)
|
2016-03-04 14:14:34 +01:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 14:10:59 +02:00
|
|
|
if [ ! -e ${OPENAL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${OPENAL_TIMESTAMP} -nt ${OPENAL_TIMESTAMP_INT} ] ; then \
|
2016-04-29 10:11:26 +02:00
|
|
|
REFRESH=1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "changed timestamp for openal detected building..."; \
|
2016-02-12 04:10:44 +01:00
|
|
|
cd ${OPENAL_DIR}; \
|
2016-04-13 20:14:04 +02:00
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
2016-05-13 20:58:38 +02:00
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
|
|
|
APP_ABI=${TARGET_ABI} APP_PLATFORM=${APP_PLATFORM} \
|
|
|
|
TARGET_CFLAGS+="${TARGET_CFLAGS_ADDON}" \
|
|
|
|
TARGET_LDFLAGS+="${TARGET_LDFLAGS_ADDON}" \
|
|
|
|
TARGET_CXXFLAGS+="${TARGET_CXXFLAGS_ADDON}" || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${OPENAL_TIMESTAMP}; \
|
|
|
|
touch ${OPENAL_TIMESTAMP_INT}; \
|
|
|
|
else \
|
2016-02-10 16:09:54 +01:00
|
|
|
echo "nothing to be done for openal"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
clean_openal :
|
2016-03-18 23:16:30 +01:00
|
|
|
$(RM) -rf ${OPENAL_FOLDER}
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-03-31 23:26:03 +02:00
|
|
|
$(VORBIS_TIMESTAMP) : vorbis_download
|
|
|
|
@LAST_MODIF=$$(find ${VORBIS_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
2014-04-21 14:10:59 +02:00
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
2016-03-31 23:26:03 +02:00
|
|
|
touch ${VORBIS_TIMESTAMP}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-03-31 23:26:03 +02:00
|
|
|
vorbis_download :
|
2016-04-29 10:11:26 +02:00
|
|
|
@if [ ! -d ${VORBIS_DIR} ] ; then \
|
2016-04-08 19:43:15 +02:00
|
|
|
echo "vorbis sources missing, downloading..."; \
|
2016-04-29 10:11:26 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2016-04-08 19:43:15 +02:00
|
|
|
git clone ${VORBIS_URL_GIT}|| exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-03-31 23:26:03 +02:00
|
|
|
vorbis : $(VORBIS_LIB)
|
2014-04-21 14:10:59 +02:00
|
|
|
|
2016-03-31 23:26:03 +02:00
|
|
|
$(VORBIS_LIB): $(VORBIS_TIMESTAMP)
|
2016-05-01 21:39:43 +02:00
|
|
|
+ @REFRESH=0; \
|
2016-04-08 19:43:15 +02:00
|
|
|
if [ ! -e ${VORBIS_TIMESTAMP_INT} ] ; then \
|
2016-05-01 21:39:43 +02:00
|
|
|
echo "${VORBIS_TIMESTAMP_INT} doesn't exist"; \
|
2016-02-10 16:09:54 +01:00
|
|
|
REFRESH=1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi; \
|
2016-04-08 19:43:15 +02:00
|
|
|
if [ ${VORBIS_TIMESTAMP} -nt ${VORBIS_TIMESTAMP_INT} ] ; then \
|
2016-02-10 16:09:54 +01:00
|
|
|
REFRESH=1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
2016-04-08 19:43:15 +02:00
|
|
|
echo "changed timestamp for vorbis detected building..."; \
|
|
|
|
cd ${VORBIS_DIR}; \
|
2016-04-13 20:14:04 +02:00
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
|
|
|
APP_ABI=${TARGET_ABI} APP_PLATFORM=${APP_PLATFORM} \
|
|
|
|
TARGET_CFLAGS+="${TARGET_CFLAGS_ADDON}" \
|
|
|
|
TARGET_LDFLAGS+="${TARGET_LDFLAGS_ADDON}" \
|
|
|
|
TARGET_CXXFLAGS+="${TARGET_CXXFLAGS_ADDON}" || exit 1; \
|
2016-05-01 21:39:43 +02:00
|
|
|
touch ${VORBIS_TIMESTAMP}; \
|
|
|
|
touch ${VORBIS_TIMESTAMP_INT}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
else \
|
2016-04-08 19:43:15 +02:00
|
|
|
echo "nothing to be done for libvorbis"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
2016-03-31 23:26:03 +02:00
|
|
|
clean_vorbis :
|
|
|
|
$(RM) -rf ${VORBIS_DIR}
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
$(OPENSSL_TIMESTAMP) : openssl_download
|
|
|
|
@LAST_MODIF=$$(find ${OPENSSL_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${OPENSSL_TIMESTAMP}; \
|
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
openssl_download :
|
|
|
|
@if [ ! -d ${OPENSSL_DIR} ] ; then \
|
|
|
|
echo "openssl sources missing, downloading..."; \
|
2016-04-29 10:11:26 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2016-04-29 09:11:25 +02:00
|
|
|
cd ${ANDR_ROOT}/deps; \
|
2015-01-03 23:49:46 +01:00
|
|
|
wget ${OPENSSL_URL} || exit 1; \
|
2016-03-04 14:14:34 +01:00
|
|
|
tar -xzf openssl-$(OPENSSL_VERSION).tar.gz; \
|
2016-04-29 09:11:25 +02:00
|
|
|
$(RM) -rf $(ANDR_ROOT)/deps/openssl-$(OPENSSL_VERSION).tar.gz; \
|
2016-03-04 14:14:34 +01:00
|
|
|
mv openssl-$(OPENSSL_VERSION) openssl; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
openssl : $(OPENSSL_LIB)
|
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
$(OPENSSL_LIB): $(OPENSSL_TIMESTAMP) $(MPIR_LIB)
|
2014-04-21 14:10:59 +02:00
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${OPENSSL_TIMESTAMP_INT} ] ; then \
|
|
|
|
echo "${OPENSSL_TIMESTAMP_INT} doesn't exist"; \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${OPENSSL_TIMESTAMP} -nt ${OPENSSL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "changed timestamp for openssl detected building..."; \
|
|
|
|
cd ${OPENSSL_DIR}; \
|
2015-01-05 00:48:33 +01:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-openssl; \
|
2015-01-03 23:49:46 +01:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-29 09:11:25 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN} --platform=${APP_PLATFORM}; \
|
2015-01-03 23:49:46 +01:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
2016-03-18 23:16:30 +01:00
|
|
|
CC=${CROSS_PREFIX}gcc ./Configure no-ssl2 no-ssl3 no-hw enable-gmp \
|
2016-05-03 03:21:56 +02:00
|
|
|
-DL_ENDIAN -I${MPIR_DIR} -L${MPIR_DIR}/usr/lib android-${TARGET_ARCH}; \
|
2015-12-27 21:55:32 +01:00
|
|
|
CC=${CROSS_PREFIX}gcc ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make depend; \
|
2015-01-05 00:48:33 +01:00
|
|
|
CC=${CROSS_PREFIX}gcc ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make build_libs; \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${OPENSSL_TIMESTAMP}; \
|
|
|
|
touch ${OPENSSL_TIMESTAMP_INT}; \
|
2015-01-05 00:48:33 +01:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
else \
|
2016-02-12 04:10:44 +01:00
|
|
|
echo "nothing to be done for openssl"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
clean_openssl :
|
2016-03-04 14:14:34 +01:00
|
|
|
$(RM) -rf deps/openssl-$(OPENSSL_VERSION).tar.gz; \
|
|
|
|
$(RM) -rf deps/openssl
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
$(FREETYPE_TIMESTAMP) : freetype_download
|
|
|
|
@LAST_MODIF=$$(find ${FREETYPE_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
2016-04-29 10:11:26 +02:00
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${FREETYPE_TIMESTAMP}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
freetype_download :
|
2016-04-29 10:11:26 +02:00
|
|
|
@if [ ! -d ${FREETYPE_DIR} ] ; then \
|
|
|
|
echo "freetype sources missing, downloading..."; \
|
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd deps; \
|
|
|
|
wget ${FREETYPE_URL_HTTP} || exit 1; \
|
|
|
|
tar -xjf freetype-${FREETYPE_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
rm freetype-${FREETYPE_VERSION}.tar.bz2; \
|
|
|
|
mv freetype-${FREETYPE_VERSION} freetype; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
freetype : $(FREETYPE_LIB)
|
|
|
|
|
|
|
|
$(FREETYPE_LIB) : $(FREETYPE_TIMESTAMP)
|
2016-04-29 10:11:26 +02:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 14:10:59 +02:00
|
|
|
if [ ! -e ${FREETYPE_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e ${FREETYPE_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${FREETYPE_TIMESTAMP} -nt ${FREETYPE_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
2016-04-29 10:11:26 +02:00
|
|
|
mkdir -p ${FREETYPE_DIR}; \
|
2016-03-04 14:14:34 +01:00
|
|
|
export PATH=$$PATH:${ANDROID_NDK}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "changed timestamp for freetype detected building..."; \
|
2016-03-04 14:14:34 +01:00
|
|
|
cd deps/freetype; \
|
2016-02-09 13:58:21 +01:00
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-freetype; \
|
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-08 19:43:15 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
2016-03-21 00:38:25 +01:00
|
|
|
--platform=${APP_PLATFORM} --install-dir=$${TOOLCHAIN}; \
|
2016-02-09 13:58:21 +01:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
2016-05-01 21:39:43 +02:00
|
|
|
export CPPFLAGS="$${CPPFLAGS} ${TARGET_CXXFLAGS_ADDON}"; \
|
2016-04-29 08:17:11 +02:00
|
|
|
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
|
|
|
|
export LDFLAGS="$${LDFLAGS} ${TARGET_LDFLAGS_ADDON}"; \
|
2016-04-21 00:53:17 +02:00
|
|
|
CC=${CROSS_PREFIX}gcc ./configure --host=${TARGET_HOST} \
|
2016-04-29 08:17:11 +02:00
|
|
|
--prefix=${TOOLCHAIN} --with-png=no --with-harfbuzz=no || exit 1; \
|
2016-04-21 00:53:17 +02:00
|
|
|
CC=${CROSS_PREFIX}gcc ANDROID_DEV=/tmp/ndk-${TARGET_HOST}-freetype $(MAKE) || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${FREETYPE_TIMESTAMP}; \
|
|
|
|
touch ${FREETYPE_TIMESTAMP_INT}; \
|
2016-02-09 13:58:21 +01:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for freetype"; \
|
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
clean_freetype :
|
|
|
|
$(RM) -rf ${FREETYPE_DIR}
|
|
|
|
|
2015-11-10 12:49:24 +01:00
|
|
|
$(ICONV_TIMESTAMP) : iconv_download
|
|
|
|
@LAST_MODIF=$$(find ${ICONV_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
touch ${ICONV_TIMESTAMP}; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
iconv_download :
|
2016-02-12 04:10:44 +01:00
|
|
|
@if [ ! -d ${ICONV_DIR} ] ; then \
|
2015-11-10 12:49:24 +01:00
|
|
|
echo "iconv sources missing, downloading..."; \
|
2016-04-13 20:14:04 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps; \
|
2015-11-10 12:49:24 +01:00
|
|
|
wget ${ICONV_URL_HTTP} || exit 1; \
|
|
|
|
tar -xzf libiconv-${ICONV_VERSION}.tar.gz || exit 1; \
|
|
|
|
rm libiconv-${ICONV_VERSION}.tar.gz; \
|
2016-04-08 19:43:15 +02:00
|
|
|
mv libiconv-${ICONV_VERSION} libiconv; \
|
2016-04-29 10:11:26 +02:00
|
|
|
cd libiconv; \
|
2016-05-02 05:09:17 +02:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/libiconv_android.patch; \
|
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/libiconv_stdio.patch; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
iconv : $(ICONV_LIB)
|
|
|
|
|
|
|
|
$(ICONV_LIB) : $(ICONV_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${ICONV_TIMESTAMP_INT} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi; \
|
|
|
|
if [ ! -e ${ICONV_LIB} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi; \
|
|
|
|
if [ ${ICONV_TIMESTAMP} -nt ${ICONV_TIMESTAMP_INT} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
Android: fix horrible libiconv build
Before, our libiconv build was a joke. We first called configure for our own build host system,
then called make, before we executed a Android.mk script we provided as patch. The first "native make"
always failed, and the LIBICONV_LIB file setting in our Makefile didn't match the built one,
resulting in an always-rebuild of iconv.
This commit cleans up this total mess, removes the double-build, and the Android.mk, and properly calls
./configure with the according target platform, and uses a built toolchain.
As we have to deal with the android bug "NDK: Support for prebuild libs with full sonames"
https://code.google.com/p/android/issues/detail?id=55868
as the 2013 patch
https://lists.gnu.org/archive/html/libtool-patches/2013-06/msg00002.html
by Google's David Turner wasn't inside the 2011 libtool, we pass -avoid-version to
libtool.
Thanks to the proper build, wide_to_utf8 works for android now, removing us of the need to disable it.
2015-07-29 11:54:27 +02:00
|
|
|
mkdir -p ${ICONV_DIR}; \
|
2015-11-10 12:49:24 +01:00
|
|
|
echo "changed timestamp for iconv detected building..."; \
|
|
|
|
cd ${ICONV_DIR}; \
|
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-iconv; \
|
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-29 10:11:26 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
|
|
|
--platform=${APP_PLATFORM} --install-dir=$${TOOLCHAIN}; \
|
2015-11-10 12:49:24 +01:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
2016-05-01 21:39:43 +02:00
|
|
|
export CPPFLAGS="$${CPPFLAGS} ${TARGET_CXXFLAGS_ADDON}"; \
|
2016-04-29 08:17:11 +02:00
|
|
|
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
|
|
|
|
export LDFLAGS="$${LDFLAGS} ${TARGET_LDFLAGS_ADDON}"; \
|
|
|
|
./configure --enable-static --disable-shared --host=${TARGET_HOST2} || exit 1; \
|
2015-11-10 12:49:24 +01:00
|
|
|
sed -i 's/LIBICONV_VERSION_INFO) /LIBICONV_VERSION_INFO) -avoid-version /g' lib/Makefile; \
|
|
|
|
grep "iconv_LDFLAGS" src/Makefile; \
|
|
|
|
$(MAKE) -s || exit 1; \
|
|
|
|
touch ${ICONV_TIMESTAMP}; \
|
|
|
|
touch ${ICONV_TIMESTAMP_INT}; \
|
|
|
|
rm -rf ${TOOLCHAIN}; \
|
|
|
|
else \
|
2016-02-12 04:10:44 +01:00
|
|
|
echo "nothing to be done for iconv"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
clean_iconv :
|
|
|
|
$(RM) -rf ${ICONV_DIR}
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
#Note: Texturehack patch is required for gpu's not supporting color format
|
|
|
|
# correctly. Known bad GPU:
|
|
|
|
# -geforce on emulator
|
|
|
|
# -Vivante Corporation GC1000 core (e.g. Galaxy Tab 3)
|
|
|
|
|
|
|
|
irrlicht_download :
|
|
|
|
@if [ ! -d "deps/irrlicht" ] ; then \
|
|
|
|
echo "irrlicht sources missing, downloading..."; \
|
2016-04-13 20:14:04 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2014-04-21 14:10:59 +02:00
|
|
|
cd deps; \
|
2016-03-04 14:14:34 +01:00
|
|
|
wget ${IRRLICHT_URL_HTTP} || exit 1; \
|
|
|
|
unzip ${IRRLICHT_COMMIT}.zip || exit 1; \
|
|
|
|
rm ${IRRLICHT_COMMIT}.zip; \
|
|
|
|
mv irrlicht-${IRRLICHT_COMMIT} irrlicht; \
|
2014-04-21 14:10:59 +02:00
|
|
|
cd irrlicht; \
|
2016-03-04 14:14:34 +01:00
|
|
|
mkdir -p lib/Android; \
|
2016-04-13 20:14:04 +02:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/irrlicht-touchcount.patch || exit 1; \
|
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/irrlicht-back_button.patch || exit 1; \
|
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/irrlicht-texturehack.patch || exit 1; \
|
2016-04-29 09:11:25 +02:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/irrlicht-optimization.patch || exit 1;\
|
2016-09-18 02:16:16 +02:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/irrlicht-CEGL.patch || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
2015-11-10 12:49:24 +01:00
|
|
|
$(IRRLICHT_TIMESTAMP) : irrlicht_download
|
|
|
|
@LAST_MODIF=$$(find ${IRRLICHT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${IRRLICHT_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
irrlicht : $(IRRLICHT_LIB)
|
|
|
|
|
|
|
|
$(IRRLICHT_LIB): $(IRRLICHT_TIMESTAMP) $(FREETYPE_LIB)
|
2016-04-29 10:11:26 +02:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 14:10:59 +02:00
|
|
|
if [ ! -e ${IRRLICHT_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e ${IRRLICHT_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${IRRLICHT_TIMESTAMP} -nt ${IRRLICHT_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
mkdir -p ${IRRLICHT_DIR}; \
|
|
|
|
echo "changed timestamp for irrlicht detected building..."; \
|
|
|
|
cd deps/irrlicht/source/Irrlicht/Android; \
|
2016-04-13 20:14:04 +02:00
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
2016-04-29 09:11:25 +02:00
|
|
|
APP_ABI=${TARGET_ABI} APP_PLATFORM=${APP_PLATFORM} || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${IRRLICHT_TIMESTAMP}; \
|
|
|
|
touch ${IRRLICHT_TIMESTAMP_INT}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for irrlicht"; \
|
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
clean_irrlicht :
|
|
|
|
$(RM) -rf deps/irrlicht
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
$(CURL_TIMESTAMP) : curl_download
|
|
|
|
@LAST_MODIF=$$(find ${CURL_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
2016-04-29 10:11:26 +02:00
|
|
|
touch ${CURL_TIMESTAMP}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
curl_download :
|
2016-04-29 10:11:26 +02:00
|
|
|
@if [ ! -d "deps/curl" ] ; then \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "curl sources missing, downloading..."; \
|
2016-04-13 20:14:04 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2014-04-21 14:10:59 +02:00
|
|
|
cd deps; \
|
|
|
|
wget ${CURL_URL_HTTP} || exit 1; \
|
|
|
|
tar -xjf curl-${CURL_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
rm curl-${CURL_VERSION}.tar.bz2; \
|
2016-03-04 14:14:34 +01:00
|
|
|
mv curl-${CURL_VERSION} curl; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
curl : $(CURL_LIB)
|
|
|
|
|
2016-04-29 08:17:11 +02:00
|
|
|
#$(CURL_LIB): $(CURL_TIMESTAMP) $(OPENSSL_LIB)
|
|
|
|
$(CURL_LIB): $(CURL_TIMESTAMP)
|
2016-04-29 10:11:26 +02:00
|
|
|
@REFRESH=0; \
|
2014-04-21 14:10:59 +02:00
|
|
|
if [ ! -e ${CURL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e ${CURL_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${CURL_TIMESTAMP} -nt ${CURL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
mkdir -p ${CURL_DIR}; \
|
|
|
|
echo "changed timestamp for curl detected building..."; \
|
2016-03-04 14:14:34 +01:00
|
|
|
cd deps/curl; \
|
2014-04-21 14:10:59 +02:00
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
2015-01-05 00:48:33 +01:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-curl; \
|
2014-04-21 14:10:59 +02:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-29 09:11:25 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
|
|
|
--platform=${APP_PLATFORM} --install-dir=$${TOOLCHAIN}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
2016-05-13 20:58:38 +02:00
|
|
|
# export CPPFLAGS="$${CPPFLAGS} -I${OPENSSL_DIR}/include \
|
|
|
|
export CPPFLAGS="$${CPPFLAGS} ${TARGET_CXXFLAGS_ADDON}"; \
|
2014-04-21 14:10:59 +02:00
|
|
|
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
|
2016-05-13 20:58:38 +02:00
|
|
|
# export LDFLAGS="$${LDFLAGS} -L${OPENSSL_DIR} ${TARGET_LDFLAGS_ADDON}"; \
|
2016-04-18 21:40:42 +02:00
|
|
|
export LDFLAGS="$${LDFLAGS} ${TARGET_LDFLAGS_ADDON}"; \
|
2016-05-13 20:58:38 +02:00
|
|
|
# ./configure --host=${TARGET_HOST} --enable-static --disable-shared --with-ssl; \
|
2016-04-18 21:40:42 +02:00
|
|
|
./configure --host=${TARGET_HOST} --enable-static --disable-shared; \
|
2015-03-17 15:48:48 +01:00
|
|
|
$(MAKE) -s || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${CURL_TIMESTAMP}; \
|
|
|
|
touch ${CURL_TIMESTAMP_INT}; \
|
2015-01-05 00:48:33 +01:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for curl"; \
|
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
clean_curl :
|
2016-03-18 23:16:30 +01:00
|
|
|
$(RM) -R ${CURL_DIR}
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
$(MPIR_TIMESTAMP) : mpir_download
|
|
|
|
@LAST_MODIF=$$(find ${MPIR_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
2015-11-10 12:49:24 +01:00
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
2016-05-03 03:21:56 +02:00
|
|
|
touch ${MPIR_TIMESTAMP}; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
mpir_download :
|
2016-05-13 20:58:38 +02:00
|
|
|
@if [ ! -d "${MPIR_DIR}" ] ; then \
|
|
|
|
echo "mpir sources missing, downloading..."; \
|
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd deps; \
|
|
|
|
wget ${MPIR_URL_HTTP} || exit 1; \
|
|
|
|
tar -xjf mpir-${MPIR_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
rm mpir-${MPIR_VERSION}.tar.bz2; \
|
|
|
|
mv mpir-${MPIR_VERSION} mpir; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
mpir : $(MPIR_LIB)
|
2015-11-10 12:49:24 +01:00
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
$(MPIR_LIB): $(MPIR_TIMESTAMP)
|
2015-04-12 06:18:48 +02:00
|
|
|
@REFRESH=0; \
|
2016-05-03 03:21:56 +02:00
|
|
|
if [ ! -e ${MPIR_TIMESTAMP_INT} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-04-12 06:18:48 +02:00
|
|
|
fi; \
|
2016-05-03 03:21:56 +02:00
|
|
|
if [ ! -e ${MPIR_LIB} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-04-12 06:18:48 +02:00
|
|
|
fi; \
|
2016-05-03 03:21:56 +02:00
|
|
|
if [ ${MPIR_TIMESTAMP} -nt ${MPIR_TIMESTAMP_INT} ] ; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
REFRESH=1; \
|
2015-04-12 06:18:48 +02:00
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
2016-05-03 03:21:56 +02:00
|
|
|
mkdir -p ${MPIR_DIR}; \
|
|
|
|
echo "changed timestamp for mpir detected building..."; \
|
|
|
|
cd deps/mpir; \
|
2016-03-21 00:38:25 +01:00
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
2016-05-03 03:21:56 +02:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-mpir; \
|
2015-04-12 06:18:48 +02:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-29 09:11:25 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
|
|
|
--platform=${APP_PLATFORM} --install-dir=$${TOOLCHAIN}; \
|
2015-04-12 06:18:48 +02:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
2016-05-13 20:58:38 +02:00
|
|
|
./configure --enable-static --disable-shared --host=${TARGET_HOST}; \
|
2016-05-03 03:21:56 +02:00
|
|
|
$(MAKE) install DESTDIR=/${MPIR_DIR} || exit 1; \
|
|
|
|
touch ${MPIR_TIMESTAMP}; \
|
|
|
|
touch ${MPIR_TIMESTAMP_INT}; \
|
2015-04-12 06:18:48 +02:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
|
|
|
else \
|
2016-05-03 03:21:56 +02:00
|
|
|
echo "nothing to be done for mpir"; \
|
2015-04-12 06:18:48 +02:00
|
|
|
fi
|
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
clean_mpir:
|
|
|
|
$(RM) -R deps/mpir
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-08 19:43:15 +02:00
|
|
|
sqlite3_download: deps/sqlite/sqlite3.c
|
2016-03-31 23:26:03 +02:00
|
|
|
|
2016-04-08 19:43:15 +02:00
|
|
|
deps/sqlite/sqlite3.c :
|
2016-04-29 09:11:25 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps; \
|
2016-03-31 23:26:03 +02:00
|
|
|
rm -R sqlite; \
|
|
|
|
wget ${SQLITE3_URL}; \
|
|
|
|
unzip sqlite-amalgamation-$(SQLITE3_VERSION).zip || exit 1; \
|
|
|
|
rm sqlite-amalgamation-$(SQLITE3_VERSION).zip; \
|
|
|
|
mv sqlite-amalgamation-$(SQLITE3_VERSION) sqlite; \
|
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2015-01-07 01:01:03 +01:00
|
|
|
clean_sqlite3:
|
2016-03-18 23:16:30 +01:00
|
|
|
$(RM) -R sqlite
|
2015-01-07 01:01:03 +01:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
$(ASSETS_TIMESTAMP) : $(IRRLICHT_LIB)
|
2016-04-13 20:14:04 +02:00
|
|
|
@mkdir -p ${ANDR_ROOT}/deps; \
|
2016-02-12 04:10:44 +01:00
|
|
|
for DIRNAME in {builtin,client,doc,fonts,games,mods,po,textures}; do \
|
2016-04-13 20:14:04 +02:00
|
|
|
LAST_MODIF=$$(find ${PROJ_ROOT}/${DIRNAME} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
2015-06-20 07:39:28 +02:00
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ]; then \
|
2016-04-13 20:14:04 +02:00
|
|
|
touch ${PROJ_ROOT}/${DIRNAME}/timestamp; \
|
2015-06-20 07:39:28 +02:00
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
echo ${DIRNAME} changed $$LAST_MODIF; \
|
2016-02-12 04:10:44 +01:00
|
|
|
fi; \
|
|
|
|
done; \
|
2014-04-21 14:10:59 +02:00
|
|
|
LAST_MODIF=$$(find ${IRRLICHT_DIR}/media -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${IRRLICHT_DIR}/media/timestamp; \
|
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
fi; \
|
2016-04-29 09:11:25 +02:00
|
|
|
if [ ${PROJ_ROOT}/multicraft.conf.example -nt ${ASSETS_TIMESTAMP} ] ; then \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "conf changed"; \
|
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
fi; \
|
2016-04-13 20:14:04 +02:00
|
|
|
if [ ${PROJ_ROOT}/README.txt -nt ${ASSETS_TIMESTAMP} ] ; then \
|
2014-04-21 14:10:59 +02:00
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e $(ASSETS_TIMESTAMP) ] ; then \
|
|
|
|
touch $(ASSETS_TIMESTAMP); \
|
|
|
|
fi
|
2016-03-04 14:14:34 +01:00
|
|
|
|
|
|
|
$(LUAJIT_TIMESTAMP) : luajit_download
|
|
|
|
@LAST_MODIF=$$(find ${LUAJIT_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${LUAJIT_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
luajit_download :
|
|
|
|
@if [ ! -d ${LUAJIT_DIR} ] ; then \
|
|
|
|
echo "luajit sources missing, downloading..."; \
|
2016-04-29 09:11:25 +02:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps; \
|
2016-03-04 14:14:34 +01:00
|
|
|
git clone --branch ${LUAJIT_GIT_BRANCH} ${LUAJIT_URL_GIT} luajit || exit 1; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
luajit : $(LUAJIT_LIB)
|
|
|
|
|
|
|
|
$(LUAJIT_LIB): $(LUAJIT_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
2016-03-18 23:16:30 +01:00
|
|
|
if [ ! -e ${LUAJIT_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
2016-03-04 14:14:34 +01:00
|
|
|
fi; \
|
|
|
|
if [ ${LUAJIT_TIMESTAMP} -nt ${LUAJIT_TIMESTAMP_INT} ] ; then \
|
2016-03-18 23:16:30 +01:00
|
|
|
REFRESH=1; \
|
2016-03-04 14:14:34 +01:00
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
mkdir -p ${LUAJIT_DIR}; \
|
|
|
|
export PATH=$$PATH:${ANDROID_NDK}; \
|
|
|
|
echo "changed timestamp for luajit detected building..."; \
|
|
|
|
cd ${LUAJIT_DIR}; \
|
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-luajit; \
|
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-03-28 19:08:34 +02:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}-${COMPILER_VERSION} \
|
2016-03-18 23:16:30 +01:00
|
|
|
--platform=${APP_PLATFORM} --install-dir=$${TOOLCHAIN}; \
|
2016-03-04 14:14:34 +01:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export TARGET_FLAGS="${TARGET_CFLAGS_ADDON}"; \
|
|
|
|
export TARGET_LDFLAGS="${TARGET_LDFLAGS_ADDON}"; \
|
2016-05-13 20:58:38 +02:00
|
|
|
$(MAKE) CROSS=${CROSS_PREFIX} XCFLAGS="-DLUAJIT_DISABLE_FFI" HOST_CC="gcc -m32" BUILDMODE=static; \
|
2016-03-04 14:14:34 +01:00
|
|
|
touch ${LUAJIT_TIMESTAMP}; \
|
|
|
|
touch ${LUAJIT_TIMESTAMP_INT}; \
|
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for luajit"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_luajit:
|
2016-03-28 19:08:34 +02:00
|
|
|
$(RM) -R deps/luajit
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-09-13 14:21:40 +02:00
|
|
|
$(GNUINTL_TIMESTAMP) : gnuintl_download
|
|
|
|
@LAST_MODIF=$$(find ${GNUINTL_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${GNUINTL_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
gnuintl_download :
|
|
|
|
@if [ ! -d "${GNUINTL_DIR}" ] ; then \
|
|
|
|
echo "gnuintl sources missing, downloading..."; \
|
|
|
|
# mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
# cd deps; \
|
|
|
|
# wget ${MPIR_URL_HTTP} || exit 1; \
|
|
|
|
# tar -xjf gnuintl-${MPIR_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
# rm gnuintl-${MPIR_VERSION}.tar.bz2; \
|
|
|
|
# mv gnuintl-${MPIR_VERSION} gnuintl; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
gnuintl : $(GNUINTL_LIB)
|
|
|
|
|
|
|
|
$(GNUINTL_LIB): $(GNUINTL_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${GNUINTL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e ${GNUINTL_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${GNUINTL_TIMESTAMP} -nt ${GNUINTL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
mkdir -p ${GNUINTL_DIR}; \
|
|
|
|
echo "changed timestamp for gnuintl detected building..."; \
|
|
|
|
cd ${GNUINTL_DIR}; \
|
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
|
|
|
APP_ABI=${TARGET_ABI} APP_PLATFORM=${APP_PLATFORM} || exit 1; \
|
|
|
|
touch ${GNUINTL_TIMESTAMP}; \
|
|
|
|
touch ${GNUINTL_TIMESTAMP_INT}; \
|
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for gnuintl"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
clean_gnuintl:
|
|
|
|
$(RM) -R sqlite
|
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
assets : $(ASSETS_TIMESTAMP)
|
2016-05-01 21:39:43 +02:00
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${ASSETS_TIMESTAMP} ] ; then \
|
|
|
|
REFRESH=1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
fi; \
|
2016-05-01 21:39:43 +02:00
|
|
|
if [ ${ASSETS_TIMESTAMP} -nt ${ASSETS_TIMESTAMP} ] ; then \
|
|
|
|
REFRESH=1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
echo "assets changed, refreshing..."; \
|
2015-03-17 15:48:48 +01:00
|
|
|
$(MAKE) clean_assets; \
|
2016-05-01 21:39:43 +02:00
|
|
|
mkdir -p ${APP_ROOT}/assets/MultiCraft; \
|
|
|
|
cp -r ${PROJ_ROOT}/builtin ${APP_ROOT}/assets/MultiCraft; \
|
|
|
|
mkdir ${APP_ROOT}/assets/MultiCraft/fonts; \
|
|
|
|
cp -r ${PROJ_ROOT}/fonts/retrovillenc.ttf ${APP_ROOT}/assets/MultiCraft/fonts/; \
|
|
|
|
cp -r ${PROJ_ROOT}/games ${APP_ROOT}/assets/MultiCraft; \
|
|
|
|
cp -r ${PROJ_ROOT}/textures ${APP_ROOT}/assets/MultiCraft; \
|
|
|
|
cp -r ${PROJ_ROOT}/worlds ${APP_ROOT}/assets/MultiCraft; \
|
|
|
|
cd ${APP_ROOT}/assets || exit 1; \
|
2014-04-21 14:10:59 +02:00
|
|
|
find . -name "timestamp" -exec rm {} \; ; \
|
|
|
|
find . -name "*.blend" -exec rm {} \; ; \
|
2015-01-06 16:01:49 +01:00
|
|
|
find . -name "*~" -exec rm {} \; ; \
|
|
|
|
find . -type d -path "*.git" -exec rm -rf {} \; ; \
|
|
|
|
find . -type d -path "*.svn" -exec rm -rf {} \; ; \
|
|
|
|
find . -type f -path "*.gitignore" -exec rm -rf {} \; ; \
|
2014-04-21 14:10:59 +02:00
|
|
|
ls -R | grep ":$$" | sed -e 's/:$$//' -e 's/\.//' -e 's/^\///' > "index.txt"; \
|
2016-05-01 21:39:43 +02:00
|
|
|
find -L MultiCraft > filelist.txt; \
|
2016-05-01 23:01:06 +02:00
|
|
|
echo "Creating Files.zip"; \
|
|
|
|
zip -r Files.zip MultiCraft; \
|
2016-05-01 21:39:43 +02:00
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
touch ${ASSETS_TIMESTAMP_INT}; \
|
2014-04-21 14:10:59 +02:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for assets"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_assets :
|
|
|
|
@$(RM) -r assets
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-05-03 03:21:56 +02:00
|
|
|
apk: local.properties $(ICONV_LIB) $(IRRLICHT_LIB) $(CURL_LIB) $(MPIR_LIB) $(LUAJIT_LIB) \
|
2016-05-01 21:39:43 +02:00
|
|
|
$(OPENAL_LIB) $(VORBIS_LIB) prep_srcdir $(ANDR_ROOT)/jni/src/android_version.h \
|
2016-05-13 20:58:38 +02:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h sqlite3_download assets
|
|
|
|
+ @${ANDROID_NDK}/ndk-build NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
2016-04-29 09:11:25 +02:00
|
|
|
GPROF=${GPROF} APP_ABI=${TARGET_ABI} \
|
2016-04-13 20:14:04 +02:00
|
|
|
APP_PLATFORM=${APP_PLATFORM} \
|
2016-04-29 09:11:25 +02:00
|
|
|
TARGET_LIBDIR=${TARGET_LIBDIR} && \
|
2016-04-13 20:14:04 +02:00
|
|
|
if [ ! -e ${APP_ROOT}/jniLibs ]; then \
|
|
|
|
ln -s ${ANDR_ROOT}/libs ${APP_ROOT}/jniLibs || exit 1; \
|
|
|
|
fi; \
|
|
|
|
export VERSION_STR="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}" && \
|
|
|
|
export BUILD_TYPE_C=$$(echo "$${BUILD_TYPE}" | sed 's/./\U&/') && \
|
|
|
|
gradle assemble$$BUILD_TYPE_C && \
|
2016-04-08 19:43:15 +02:00
|
|
|
echo " Success! =)"; \
|
2016-03-28 19:08:34 +02:00
|
|
|
ant $$BUILD_TYPE && \
|
2016-05-01 21:39:43 +02:00
|
|
|
echo "APK stored at: build/outputs/apk/MultiCraft-$$BUILD_TYPE.apk" && \
|
2016-04-13 20:14:04 +02:00
|
|
|
echo "You can install it with \`make install_$$BUILD_TYPE\`"
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
# These Intentionally doesn't depend on their respective build steps,
|
|
|
|
# because it takes a while to verify that everything's up-to-date.
|
|
|
|
install_debug:
|
|
|
|
${ANDROID_SDK}/platform-tools/adb install -r build/outputs/apk/Minetest-debug.apk
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
install_release:
|
|
|
|
${ANDROID_SDK}/platform-tools/adb install -r build/outputs/apk/Minetest-release.apk
|
2015-05-12 09:59:17 +02:00
|
|
|
|
2014-04-21 14:10:59 +02:00
|
|
|
prep_srcdir :
|
2016-04-13 20:14:04 +02:00
|
|
|
@if [ ! -e ${ANDR_ROOT}/jni/src ]; then \
|
|
|
|
ln -s ${PROJ_ROOT}/src ${ANDR_ROOT}/jni/src; \
|
Android: speed up rebuild, and prevent race condition fail
Speeding up rebuild:
Before, we've written the android_version.h file at every rebuild.
As it thought the file's content has changed, make has rebuilt files
in the source tree that depended on that header file during rebuild,
causing lots of files being rebuilt without there being a reason.
The reasoning of make can be observed by passing -d and V=1 params
to the ndk-build command. You then got logging entries like:
Prerequisite `jni/src/android_version.h' is newer than target `obj/local/armeabi-v7a-hard/objs-debug/minetest/jni/src/areastore.o'.
Preventing race condition build fail:
Before, there was a race condition, where, if the prep_srcdir target
was executed in parallel with the $(ROOT)/jni/src/android_version.h
one, it could happen that the jni/src directory was nonexistent, and
we were trying to write into a file inside. This resulted in a build
failue:
/bin/sh: 1: cannot create [...]/jni/src/android_version.h: Directory nonexistent
Additionally, we now don't remove the link to src/ needlessly anymore.
Keeping this wouldn't have affected the rebuild, but this way its
more proper.
2015-07-31 05:52:34 +02:00
|
|
|
fi
|
2015-04-12 06:18:48 +02:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
clean_apk :
|
|
|
|
gradle clean
|
2015-04-12 06:18:48 +02:00
|
|
|
|
|
|
|
clean_all :
|
2015-03-17 15:48:48 +01:00
|
|
|
@$(MAKE) clean_apk; \
|
2016-04-29 09:11:25 +02:00
|
|
|
$(MAKE) clean_assets; \
|
2014-04-21 14:10:59 +02:00
|
|
|
sleep 1; \
|
2016-03-04 14:14:34 +01:00
|
|
|
$(RM) -r gen libs obj deps bin Debug and_env jni/src
|
2016-04-18 21:40:42 +02:00
|
|
|
|
|
|
|
clean_src :
|
|
|
|
$(RM) -r gen libs obj bin Debug and_env jni/src
|
2015-03-28 11:25:34 +01:00
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h : prep_srcdir
|
|
|
|
@export VERSION_FILE=${ANDR_ROOT}/jni/src/android_version_githash.h; \
|
2015-11-10 12:49:24 +01:00
|
|
|
export VERSION_FILE_NEW=$${VERSION_FILE}.new; \
|
|
|
|
{ \
|
|
|
|
echo "#ifndef ANDROID_MT_VERSION_GITHASH_H"; \
|
|
|
|
echo "#define ANDROID_MT_VERSION_GITHASH_H"; \
|
2014-07-16 20:01:00 +02:00
|
|
|
export GITHASH=$$(git rev-parse --short=8 HEAD); \
|
2015-11-10 12:49:24 +01:00
|
|
|
export VERSION_STR="${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}"; \
|
|
|
|
echo "#define VERSION_GITHASH \"$$VERSION_STR-$$GITHASH-Android\""; \
|
|
|
|
echo "#endif"; \
|
|
|
|
} > "$${VERSION_FILE_NEW}"; \
|
|
|
|
if ! cmp -s $${VERSION_FILE} $${VERSION_FILE_NEW}; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
echo "android_version_githash.h changed, updating..."; \
|
|
|
|
mv "$${VERSION_FILE_NEW}" "$${VERSION_FILE}"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
else \
|
2016-02-12 04:10:44 +01:00
|
|
|
rm "$${VERSION_FILE_NEW}"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2016-04-13 20:14:04 +02:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version.h : prep_srcdir
|
|
|
|
@export VERSION_FILE=${ANDR_ROOT}/jni/src/android_version.h; \
|
2015-11-10 12:49:24 +01:00
|
|
|
export VERSION_FILE_NEW=$${VERSION_FILE}.new; \
|
|
|
|
{ \
|
|
|
|
echo "#ifndef ANDROID_MT_VERSION_H"; \
|
|
|
|
echo "#define ANDROID_MT_VERSION_H"; \
|
|
|
|
echo "#define VERSION_MAJOR ${VERSION_MAJOR}"; \
|
|
|
|
echo "#define VERSION_MINOR ${VERSION_MINOR}"; \
|
|
|
|
echo "#define VERSION_PATCH ${VERSION_PATCH}"; \
|
2016-02-12 04:10:44 +01:00
|
|
|
echo "#define VERSION_STRING STR(VERSION_MAJOR) \".\" STR(VERSION_MINOR) \
|
2016-01-23 06:26:58 +01:00
|
|
|
\".\" STR(VERSION_PATCH)"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
echo "#endif"; \
|
|
|
|
} > $${VERSION_FILE_NEW}; \
|
|
|
|
if ! cmp -s $${VERSION_FILE} $${VERSION_FILE_NEW}; then \
|
2016-02-12 04:10:44 +01:00
|
|
|
echo "android_version.h changed, updating..."; \
|
|
|
|
mv "$${VERSION_FILE_NEW}" "$${VERSION_FILE}"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
else \
|
2016-02-12 04:10:44 +01:00
|
|
|
rm "$${VERSION_FILE_NEW}"; \
|
2015-11-10 12:49:24 +01:00
|
|
|
fi
|
2015-03-28 11:25:34 +01:00
|
|
|
|
2016-02-23 05:40:14 +01:00
|
|
|
clean : clean_apk clean_assets
|
2016-04-13 20:14:04 +02:00
|
|
|
|