2014-04-21 08:10:59 -04:00
|
|
|
# build options
|
|
|
|
|
|
|
|
OS := $(shell uname)
|
|
|
|
|
|
|
|
# compile with GPROF
|
|
|
|
# GPROF = 1
|
|
|
|
|
|
|
|
# build for build platform
|
|
|
|
APP_PLATFORM = android-9
|
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
ANDR_ROOT = $(shell pwd)
|
|
|
|
PROJ_ROOT = $(shell realpath $(ANDR_ROOT)/../..)
|
|
|
|
APP_ROOT = $(ANDR_ROOT)/src/main
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2015-01-06 10:01:49 -05:00
|
|
|
GAMES_TO_COPY = minetest_game
|
2015-08-24 14:37:14 -04:00
|
|
|
MODS_TO_COPY =
|
2015-01-06 10:01:49 -05:00
|
|
|
|
2015-07-31 10:38:36 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
VERSION_MAJOR := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 10:38:36 -04:00
|
|
|
grep ^set\(VERSION_MAJOR\ | sed 's/)/ /' | cut -f2 -d' ')
|
2016-04-13 14:14:04 -04:00
|
|
|
VERSION_MINOR := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 10:38:36 -04:00
|
|
|
grep ^set\(VERSION_MINOR\ | sed 's/)/ /' | cut -f2 -d' ')
|
2016-04-13 14:14:04 -04:00
|
|
|
VERSION_PATCH := $(shell cat $(PROJ_ROOT)/CMakeLists.txt | \
|
2015-07-31 10:38:36 -04:00
|
|
|
grep ^set\(VERSION_PATCH\ | sed 's/)/ /' | cut -f2 -d' ')
|
|
|
|
|
2015-03-07 07:34:31 -05:00
|
|
|
################################################################################
|
|
|
|
# toolchain config for arm new processors
|
|
|
|
################################################################################
|
|
|
|
TARGET_HOST = arm-linux
|
2015-08-02 04:08:44 -04:00
|
|
|
TARGET_ABI = armeabi-v7a
|
2015-03-07 07:34:31 -05:00
|
|
|
TARGET_LIBDIR = armeabi-v7a
|
|
|
|
TARGET_TOOLCHAIN = arm-linux-androideabi-
|
2016-02-05 13:56:56 -05:00
|
|
|
TARGET_CFLAGS_ADDON = -mfloat-abi=softfp -mfpu=vfpv3 -O3
|
2015-03-07 07:34:31 -05:00
|
|
|
TARGET_CXXFLAGS_ADDON = $(TARGET_CFLAGS_ADDON)
|
|
|
|
TARGET_ARCH = armv7
|
|
|
|
CROSS_PREFIX = arm-linux-androideabi-
|
2016-04-13 14:14:04 -04:00
|
|
|
COMPILER_VERSION = 4.9
|
2015-03-07 07:34:31 -05:00
|
|
|
HAVE_LEVELDB = 1
|
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
################################################################################
|
|
|
|
# toolchain config for little endian mips
|
|
|
|
################################################################################
|
|
|
|
#TARGET_HOST = mipsel-linux
|
|
|
|
#TARGET_ABI = mips
|
|
|
|
#TARGET_LIBDIR = mips
|
|
|
|
#TARGET_TOOLCHAIN = mipsel-linux-android-
|
2015-01-03 17:49:46 -05:00
|
|
|
#TARGET_ARCH = mips32
|
2014-04-21 08:10:59 -04:00
|
|
|
#CROSS_PREFIX = mipsel-linux-android-
|
2016-04-13 14:14:04 -04:00
|
|
|
#COMPILER_VERSION = 4.9
|
2014-07-07 17:10:26 -04:00
|
|
|
#HAVE_LEVELDB = 0
|
2014-04-21 08:10:59 -04:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# toolchain config for x86
|
|
|
|
################################################################################
|
|
|
|
#TARGET_HOST = x86-linux
|
|
|
|
#TARGET_ABI = x86
|
|
|
|
#TARGET_LIBDIR = x86
|
|
|
|
#TARGET_TOOLCHAIN = x86-
|
|
|
|
#CROSS_PREFIX = i686-linux-android-
|
2015-01-03 17:49:46 -05:00
|
|
|
#TARGET_ARCH = x86
|
2016-04-13 14:14:04 -04:00
|
|
|
#COMPILER_VERSION = 4.9
|
2014-07-07 17:10:26 -04:00
|
|
|
#HAVE_LEVELDB = 1
|
2014-04-21 08:10:59 -04:00
|
|
|
|
|
|
|
################################################################################
|
|
|
|
ASSETS_TIMESTAMP = deps/assets_timestamp
|
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
LEVELDB_DIR = $(ANDR_ROOT)/deps/leveldb/
|
2014-04-21 08:10:59 -04:00
|
|
|
LEVELDB_LIB = $(LEVELDB_DIR)libleveldb.a
|
|
|
|
LEVELDB_TIMESTAMP = $(LEVELDB_DIR)/timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
LEVELDB_TIMESTAMP_INT = $(ANDR_ROOT)/deps/leveldb_timestamp
|
2015-09-08 15:45:16 -04:00
|
|
|
LEVELDB_URL_GIT = https://github.com/google/leveldb
|
2016-02-22 11:43:42 -05:00
|
|
|
LEVELDB_COMMIT = 2d0320a458d0e6a20fff46d5f80b18bfdcce7018
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
OPENAL_DIR = $(ANDR_ROOT)/deps/openal-soft/
|
2014-04-21 08:10:59 -04:00
|
|
|
OPENAL_LIB = $(OPENAL_DIR)libs/$(TARGET_ABI)/libopenal.so
|
|
|
|
OPENAL_TIMESTAMP = $(OPENAL_DIR)/timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
OPENAL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/openal_timestamp
|
2014-04-21 08:10:59 -04:00
|
|
|
OPENAL_URL_GIT = https://github.com/apportable/openal-soft
|
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
OGG_DIR = $(ANDR_ROOT)/deps/libvorbis-libogg-android/
|
2014-04-21 08:10:59 -04:00
|
|
|
OGG_LIB = $(OGG_DIR)libs/$(TARGET_ABI)/libogg.so
|
|
|
|
VORBIS_LIB = $(OGG_DIR)libs/$(TARGET_ABI)/libogg.so
|
|
|
|
OGG_TIMESTAMP = $(OGG_DIR)timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
OGG_TIMESTAMP_INT = $(ANDR_ROOT)/deps/ogg_timestamp
|
2014-04-21 08:10:59 -04:00
|
|
|
OGG_URL_GIT = https://github.com/vincentjames501/libvorbis-libogg-android
|
|
|
|
|
2015-11-16 11:11:32 -05:00
|
|
|
IRRLICHT_REVISION = 5122
|
2016-04-13 14:14:04 -04:00
|
|
|
IRRLICHT_DIR = $(ANDR_ROOT)/deps/irrlicht/
|
2014-04-21 08:10:59 -04:00
|
|
|
IRRLICHT_LIB = $(IRRLICHT_DIR)lib/Android/libIrrlicht.a
|
|
|
|
IRRLICHT_TIMESTAMP = $(IRRLICHT_DIR)timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
IRRLICHT_TIMESTAMP_INT = $(ANDR_ROOT)/deps/irrlicht_timestamp
|
2016-05-11 20:11:27 -04:00
|
|
|
IRRLICHT_URL_SVN = https://svn.code.sf.net/p/irrlicht/code/branches/ogl-es@$(IRRLICHT_REVISION)
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-12-07 15:27:07 -05:00
|
|
|
OPENSSL_VERSION = 1.0.2j
|
2015-01-03 17:49:46 -05:00
|
|
|
OPENSSL_BASEDIR = openssl-$(OPENSSL_VERSION)
|
2016-04-13 14:14:04 -04:00
|
|
|
OPENSSL_DIR = $(ANDR_ROOT)/deps/$(OPENSSL_BASEDIR)/
|
2015-01-03 17:49:46 -05:00
|
|
|
OPENSSL_LIB = $(OPENSSL_DIR)/libssl.so.1.0.0
|
2014-04-21 08:10:59 -04:00
|
|
|
OPENSSL_TIMESTAMP = $(OPENSSL_DIR)timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
OPENSSL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/openssl_timestamp
|
2016-05-11 20:11:27 -04:00
|
|
|
OPENSSL_URL = https://www.openssl.org/source/openssl-$(OPENSSL_VERSION).tar.gz
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-12-07 15:27:07 -05:00
|
|
|
CURL_VERSION = 7.51.0
|
2016-04-13 14:14:04 -04:00
|
|
|
CURL_DIR = $(ANDR_ROOT)/deps/curl-$(CURL_VERSION)
|
2014-04-21 08:10:59 -04:00
|
|
|
CURL_LIB = $(CURL_DIR)/lib/.libs/libcurl.a
|
|
|
|
CURL_TIMESTAMP = $(CURL_DIR)/timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
CURL_TIMESTAMP_INT = $(ANDR_ROOT)/deps/curl_timestamp
|
2016-05-11 20:11:27 -04:00
|
|
|
CURL_URL_HTTP = https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.bz2
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-12-07 15:27:07 -05:00
|
|
|
GMP_VERSION = 6.1.1
|
2016-04-13 14:14:04 -04:00
|
|
|
GMP_DIR = $(ANDR_ROOT)/deps/gmp-$(GMP_VERSION)
|
2015-05-14 23:02:19 -04:00
|
|
|
GMP_LIB = $(GMP_DIR)/usr/lib/libgmp.so
|
2015-04-12 00:18:48 -04:00
|
|
|
GMP_TIMESTAMP = $(GMP_DIR)/timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
GMP_TIMESTAMP_INT = $(ANDR_ROOT)/deps/gmp_timestamp
|
2015-04-12 00:18:48 -04:00
|
|
|
GMP_URL_HTTP = https://gmplib.org/download/gmp/gmp-$(GMP_VERSION).tar.bz2
|
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
FREETYPE_DIR = $(ANDR_ROOT)/deps/freetype2-android/
|
2015-01-03 17:49:46 -05:00
|
|
|
FREETYPE_LIB = $(FREETYPE_DIR)/Android/obj/local/$(TARGET_ABI)/libfreetype2-static.a
|
2014-04-21 08:10:59 -04:00
|
|
|
FREETYPE_TIMESTAMP = $(FREETYPE_DIR)timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
FREETYPE_TIMESTAMP_INT = $(ANDR_ROOT)/deps/freetype_timestamp
|
2014-04-21 08:10:59 -04:00
|
|
|
FREETYPE_URL_GIT = https://github.com/cdave1/freetype2-android
|
|
|
|
|
2015-06-09 18:35:21 -04:00
|
|
|
ICONV_VERSION = 1.14
|
2016-04-13 14:14:04 -04:00
|
|
|
ICONV_DIR = $(ANDR_ROOT)/deps/libiconv/
|
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 05:54:27 -04:00
|
|
|
ICONV_LIB = $(ICONV_DIR)/lib/.libs/libiconv.so
|
2015-06-09 18:35:21 -04:00
|
|
|
ICONV_TIMESTAMP = $(ICONV_DIR)timestamp
|
2016-04-13 14:14:04 -04:00
|
|
|
ICONV_TIMESTAMP_INT = $(ANDR_ROOT)/deps/iconv_timestamp
|
2016-05-11 20:11:27 -04:00
|
|
|
ICONV_URL_HTTP = https://ftp.gnu.org/pub/gnu/libiconv/libiconv-$(ICONV_VERSION).tar.gz
|
2015-06-09 18:35:21 -04:00
|
|
|
|
2016-12-07 15:27:07 -05:00
|
|
|
SQLITE3_FOLDER = sqlite-amalgamation-3150200
|
2016-05-11 20:11:27 -04:00
|
|
|
SQLITE3_URL = https://www.sqlite.org/2016/$(SQLITE3_FOLDER).zip
|
2015-01-06 19:01:03 -05:00
|
|
|
|
2016-04-13 14:14:04 -04: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 08:10:59 -04:00
|
|
|
|
2014-11-03 16:25:37 -05:00
|
|
|
#use interim target variable to switch leveldb on or off
|
|
|
|
ifeq ($(HAVE_LEVELDB),1)
|
|
|
|
LEVELDB_TARGET = $(LEVELDB_LIB)
|
|
|
|
endif
|
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
.PHONY : debug release reconfig delconfig \
|
|
|
|
leveldb_download clean_leveldb leveldb\
|
|
|
|
irrlicht_download clean_irrlicht irrlicht \
|
2015-01-06 19:01:03 -05:00
|
|
|
clean_assets assets sqlite3_download \
|
2014-04-21 08:10:59 -04:00
|
|
|
freetype_download clean_freetype freetype \
|
|
|
|
apk clean_apk \
|
|
|
|
clean_all clean prep_srcdir \
|
2016-04-13 14:14:04 -04:00
|
|
|
install_debug install_release envpaths all \
|
2014-04-21 08:10:59 -04:00
|
|
|
$(ASSETS_TIMESTAMP) $(LEVELDB_TIMESTAMP) \
|
|
|
|
$(OPENAL_TIMESTAMP) $(OGG_TIMESTAMP) \
|
|
|
|
$(IRRLICHT_TIMESTAMP) $(CURL_TIMESTAMP) \
|
2015-12-17 14:51:54 -05:00
|
|
|
$(OPENSSL_TIMESTAMP) \
|
2016-04-13 14:14:04 -04:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version.h \
|
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
debug : local.properties
|
2014-04-21 08:10:59 -04:00
|
|
|
export NDEBUG=; \
|
|
|
|
export BUILD_TYPE=debug; \
|
2015-03-17 10:48:48 -04:00
|
|
|
$(MAKE) apk
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
all : debug release
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
release : local.properties
|
2014-04-21 08:10:59 -04:00
|
|
|
@export NDEBUG=1; \
|
|
|
|
export BUILD_TYPE=release; \
|
2015-03-17 10:48:48 -04:00
|
|
|
$(MAKE) apk
|
2014-04-21 08:10:59 -04:00
|
|
|
|
|
|
|
reconfig: delconfig
|
2016-04-13 14:14:04 -04:00
|
|
|
@$(MAKE) local.properties
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
delconfig:
|
|
|
|
$(RM) local.properties
|
2014-04-21 08:10:59 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
local.properties:
|
2014-04-21 08:10:59 -04:00
|
|
|
@echo "Please specify path of ANDROID NDK"; \
|
2016-04-13 14:14:04 -04:00
|
|
|
echo "e.g. $$HOME/Android/ndk-r11c/"; \
|
2014-04-21 08:10:59 -04:00
|
|
|
read ANDROID_NDK ; \
|
|
|
|
if [ ! -d $$ANDROID_NDK ] ; then \
|
|
|
|
echo "$$ANDROID_NDK is not a valid folder"; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2016-04-13 14:14:04 -04:00
|
|
|
echo "ndk.dir = $$ANDROID_NDK" > local.properties; \
|
2014-04-21 08:10:59 -04:00
|
|
|
echo "Please specify path of ANDROID SDK"; \
|
2016-04-13 14:14:04 -04:00
|
|
|
echo "e.g. $$HOME/Android/sdk/"; \
|
2014-04-21 08:10:59 -04:00
|
|
|
read SDKFLDR ; \
|
|
|
|
if [ ! -d $$SDKFLDR ] ; then \
|
|
|
|
echo "$$SDKFLDR is not a valid folder"; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
2016-04-13 14:14:04 -04:00
|
|
|
echo "sdk.dir = $$SDKFLDR" >> local.properties;
|
|
|
|
|
2014-04-21 08:10:59 -04: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 \
|
|
|
|
touch ${OPENAL_TIMESTAMP}; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
openal_download :
|
|
|
|
@if [ ! -d ${OPENAL_DIR} ] ; then \
|
|
|
|
echo "openal sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2014-04-21 08:10:59 -04:00
|
|
|
git clone ${OPENAL_URL_GIT} || exit 1; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
openal : $(OPENAL_LIB)
|
|
|
|
|
|
|
|
$(OPENAL_LIB): $(OPENAL_TIMESTAMP)
|
2015-12-22 22:51:09 -05:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 08:10:59 -04:00
|
|
|
if [ ! -e ${OPENAL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${OPENAL_TIMESTAMP} -nt ${OPENAL_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "changed timestamp for openal detected building..."; \
|
|
|
|
cd ${OPENAL_DIR}; \
|
2016-04-13 14:14:04 -04:00
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} APP_ABI=${TARGET_ABI} \
|
|
|
|
TARGET_ARCH_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 08:10:59 -04:00
|
|
|
touch ${OPENAL_TIMESTAMP}; \
|
|
|
|
touch ${OPENAL_TIMESTAMP_INT}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for openal"; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean_openal :
|
|
|
|
$(RM) -rf ${OPENAL_DIR}
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
$(OGG_TIMESTAMP) : ogg_download
|
|
|
|
@LAST_MODIF=$$(find ${OGG_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${OGG_TIMESTAMP}; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
ogg_download :
|
|
|
|
@if [ ! -d ${OGG_DIR} ] ; then \
|
|
|
|
echo "ogg sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2014-04-21 08:10:59 -04:00
|
|
|
git clone ${OGG_URL_GIT}|| exit 1; \
|
|
|
|
cd libvorbis-libogg-android ; \
|
2016-04-13 14:14:04 -04:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/libvorbis-libogg-fpu.patch || exit 1; \
|
2015-08-02 04:08:44 -04:00
|
|
|
sed -i 's-:-?-' jni/Application.mk; \
|
2014-04-21 08:10:59 -04:00
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
ogg : $(OGG_LIB)
|
|
|
|
|
|
|
|
$(OGG_LIB): $(OGG_TIMESTAMP)
|
2015-12-22 22:51:09 -05:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 08:10:59 -04:00
|
|
|
if [ ! -e ${OGG_TIMESTAMP_INT} ] ; then \
|
|
|
|
echo "${OGG_TIMESTAMP_INT} doesn't exist"; \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${OGG_TIMESTAMP} -nt ${OGG_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "changed timestamp for ogg detected building..."; \
|
|
|
|
cd ${OGG_DIR}; \
|
2016-04-13 14:14:04 -04: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; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${OGG_TIMESTAMP}; \
|
|
|
|
touch ${OGG_TIMESTAMP_INT}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for libogg/libvorbis"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_ogg :
|
|
|
|
$(RM) -rf ${OGG_DIR}
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04: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 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
openssl_download :
|
|
|
|
@if [ ! -d ${OPENSSL_DIR} ] ; then \
|
|
|
|
echo "openssl sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2015-01-03 17:49:46 -05:00
|
|
|
wget ${OPENSSL_URL} || exit 1; \
|
|
|
|
tar -xzf ${OPENSSL_BASEDIR}.tar.gz; \
|
|
|
|
cd ${OPENSSL_BASEDIR}; \
|
2016-04-13 14:14:04 -04:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/openssl_arch.patch; \
|
2014-04-21 08:10:59 -04:00
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
openssl : $(OPENSSL_LIB)
|
|
|
|
|
2016-04-25 08:05:35 -04:00
|
|
|
$(OPENSSL_LIB): $(OPENSSL_TIMESTAMP) $(GMP_LIB)
|
2014-04-21 08:10:59 -04: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-03 17:49:46 -05:00
|
|
|
ln -s ${OPENSSL_DIR} ../openssl; \
|
2015-01-04 18:48:33 -05:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-openssl; \
|
2015-01-03 17:49:46 -05:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-13 14:14:04 -04:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN}; \
|
2015-01-03 17:49:46 -05:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
2016-02-05 13:56:56 -05:00
|
|
|
CC=${CROSS_PREFIX}gcc ./Configure enable-gmp -DL_ENDIAN -I${GMP_DIR} -L${GMP_DIR}/usr/lib android-${TARGET_ARCH};\
|
|
|
|
CC=${CROSS_PREFIX}gcc ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make depend; \
|
2015-01-04 18:48:33 -05:00
|
|
|
CC=${CROSS_PREFIX}gcc ANDROID_DEV=/tmp/ndk-${TARGET_HOST} make build_libs; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${OPENSSL_TIMESTAMP}; \
|
|
|
|
touch ${OPENSSL_TIMESTAMP_INT}; \
|
2015-01-04 18:48:33 -05:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 08:10:59 -04:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for openssl"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_openssl :
|
2015-01-04 18:48:33 -05:00
|
|
|
$(RM) -rf ${OPENSSL_DIR}; \
|
2016-04-13 14:14:04 -04:00
|
|
|
$(RM) -rf $(ANDR_ROOT)/deps/${OPENSSL_BASEDIR}.tar.gz; \
|
|
|
|
$(RM) -rf $(ANDR_ROOT)/deps/openssl
|
2014-04-21 08:10:59 -04:00
|
|
|
|
|
|
|
$(LEVELDB_TIMESTAMP) : leveldb_download
|
|
|
|
@LAST_MODIF=$$(find ${LEVELDB_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${LEVELDB_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
leveldb_download :
|
|
|
|
@if [ ! -d ${LEVELDB_DIR} ] ; then \
|
|
|
|
echo "leveldb sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps ; \
|
2014-04-21 08:10:59 -04:00
|
|
|
git clone ${LEVELDB_URL_GIT} || exit 1; \
|
2016-02-22 11:43:42 -05:00
|
|
|
cd ${LEVELDB_DIR} || exit 1; \
|
|
|
|
git checkout ${LEVELDB_COMMIT} || exit 1; \
|
2014-04-21 08:10:59 -04:00
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
leveldb : $(LEVELDB_LIB)
|
|
|
|
|
|
|
|
$(LEVELDB_LIB): $(LEVELDB_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${LEVELDB_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${LEVELDB_TIMESTAMP} -nt ${LEVELDB_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "changed timestamp for leveldb detected building..."; \
|
|
|
|
cd deps/leveldb; \
|
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
2015-01-04 18:48:33 -05:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-leveldb; \
|
2014-04-21 08:10:59 -04:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-13 14:14:04 -04:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN}; \
|
2014-04-21 08:10:59 -04:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
|
2016-04-13 14:14:04 -04:00
|
|
|
export CPPFLAGS="$${CPPFLAGS} ${TARGET_CXXFLAGS_ADDON}"; \
|
2014-04-21 08:10:59 -04:00
|
|
|
export LDFLAGS="$${LDFLAGS} ${TARGET_LDFLAGS_ADDON}"; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
2016-04-13 14:14:04 -04:00
|
|
|
$(MAKE) || exit 1; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${LEVELDB_TIMESTAMP}; \
|
|
|
|
touch ${LEVELDB_TIMESTAMP_INT}; \
|
2015-01-04 18:48:33 -05:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 08:10:59 -04:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for leveldb"; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean_leveldb :
|
|
|
|
$(RM) -rf deps/leveldb
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
$(FREETYPE_TIMESTAMP) : freetype_download
|
|
|
|
@LAST_MODIF=$$(find ${FREETYPE_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${FREETYPE_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
freetype_download :
|
|
|
|
@if [ ! -d ${FREETYPE_DIR} ] ; then \
|
|
|
|
echo "freetype sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2014-04-21 08:10:59 -04:00
|
|
|
cd deps; \
|
|
|
|
git clone ${FREETYPE_URL_GIT} || exit 1; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
freetype : $(FREETYPE_LIB)
|
|
|
|
|
|
|
|
$(FREETYPE_LIB) : $(FREETYPE_TIMESTAMP)
|
2015-12-22 22:51:09 -05:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 08:10:59 -04: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 \
|
|
|
|
mkdir -p ${FREETYPE_DIR}; \
|
|
|
|
echo "changed timestamp for freetype detected building..."; \
|
|
|
|
cd ${FREETYPE_DIR}/Android/jni; \
|
2016-04-13 14:14:04 -04:00
|
|
|
${ANDROID_NDK}/ndk-build NDEBUG=${NDEBUG} \
|
|
|
|
NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
|
|
|
APP_PLATFORM=${APP_PLATFORM} APP_ABI=${TARGET_ABI} \
|
|
|
|
TARGET_CFLAGS+="${TARGET_CFLAGS_ADDON}" \
|
|
|
|
TARGET_LDFLAGS+="${TARGET_LDFLAGS_ADDON}" \
|
|
|
|
TARGET_CXXFLAGS+="${TARGET_CXXFLAGS_ADDON}" || exit 1; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${FREETYPE_TIMESTAMP}; \
|
|
|
|
touch ${FREETYPE_TIMESTAMP_INT}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for freetype"; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean_freetype :
|
|
|
|
$(RM) -rf ${FREETYPE_DIR}
|
|
|
|
|
2015-06-09 18:35:21 -04: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 \
|
|
|
|
touch ${ICONV_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
iconv_download :
|
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 05:54:27 -04:00
|
|
|
@if [ ! -d ${ICONV_DIR} ] ; then \
|
|
|
|
echo "iconv sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
|
|
|
cd ${ANDR_ROOT}/deps; \
|
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 05:54:27 -04:00
|
|
|
wget ${ICONV_URL_HTTP} || exit 1; \
|
|
|
|
tar -xzf libiconv-${ICONV_VERSION}.tar.gz || exit 1; \
|
|
|
|
rm libiconv-${ICONV_VERSION}.tar.gz; \
|
|
|
|
ln -s libiconv-${ICONV_VERSION} libiconv; \
|
|
|
|
cd ${ICONV_DIR}; \
|
2016-04-13 14:14:04 -04:00
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/libiconv_android.patch; \
|
|
|
|
patch -p1 < ${ANDR_ROOT}/patches/libiconv_stdio.patch; \
|
2015-06-09 18:35:21 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
iconv : $(ICONV_LIB)
|
|
|
|
|
|
|
|
$(ICONV_LIB) : $(ICONV_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
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 05:54:27 -04:00
|
|
|
if [ ! -e ${ICONV_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
2015-06-09 18:35:21 -04:00
|
|
|
fi; \
|
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 05:54:27 -04:00
|
|
|
if [ ! -e ${ICONV_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
2015-06-09 18:35:21 -04:00
|
|
|
fi; \
|
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 05:54:27 -04:00
|
|
|
if [ ${ICONV_TIMESTAMP} -nt ${ICONV_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
2015-06-09 18:35:21 -04: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 05:54:27 -04:00
|
|
|
mkdir -p ${ICONV_DIR}; \
|
|
|
|
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-13 14:14:04 -04:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN}; \
|
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 05:54:27 -04:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
|
|
|
./configure --host=${TARGET_HOST} || exit 1; \
|
|
|
|
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}; \
|
2015-06-09 18:35:21 -04:00
|
|
|
else \
|
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 05:54:27 -04:00
|
|
|
echo "nothing to be done for iconv"; \
|
2015-06-09 18:35:21 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
clean_iconv :
|
|
|
|
$(RM) -rf ${ICONV_DIR}
|
|
|
|
|
2014-04-21 08:10:59 -04: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 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2014-04-21 08:10:59 -04:00
|
|
|
cd deps; \
|
|
|
|
svn co ${IRRLICHT_URL_SVN} irrlicht || exit 1; \
|
|
|
|
cd irrlicht; \
|
2016-04-13 14:14:04 -04: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; \
|
2014-04-21 08:10:59 -04:00
|
|
|
fi
|
|
|
|
|
2015-06-11 17:56:54 -04: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 08:10:59 -04:00
|
|
|
irrlicht : $(IRRLICHT_LIB)
|
|
|
|
|
|
|
|
$(IRRLICHT_LIB): $(IRRLICHT_TIMESTAMP) $(FREETYPE_LIB)
|
2015-12-22 22:51:09 -05:00
|
|
|
+ @REFRESH=0; \
|
2014-04-21 08:10:59 -04: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 14:14:04 -04: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; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${IRRLICHT_TIMESTAMP}; \
|
|
|
|
touch ${IRRLICHT_TIMESTAMP_INT}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for irrlicht"; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean_irrlicht :
|
|
|
|
$(RM) -rf deps/irrlicht
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04: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 \
|
|
|
|
touch ${CURL_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
curl_download :
|
|
|
|
@if [ ! -d "deps/curl-${CURL_VERSION}" ] ; then \
|
|
|
|
echo "curl sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2014-04-21 08:10:59 -04:00
|
|
|
cd deps; \
|
|
|
|
wget ${CURL_URL_HTTP} || exit 1; \
|
|
|
|
tar -xjf curl-${CURL_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
rm curl-${CURL_VERSION}.tar.bz2; \
|
2015-01-15 15:51:54 -05:00
|
|
|
ln -s curl-${CURL_VERSION} curl; \
|
2014-04-21 08:10:59 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
curl : $(CURL_LIB)
|
|
|
|
|
|
|
|
$(CURL_LIB): $(CURL_TIMESTAMP) $(OPENSSL_LIB)
|
|
|
|
@REFRESH=0; \
|
|
|
|
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..."; \
|
|
|
|
cd deps/curl-${CURL_VERSION}; \
|
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
2015-01-04 18:48:33 -05:00
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-curl; \
|
2014-04-21 08:10:59 -04:00
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-13 14:14:04 -04:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN}; \
|
2014-04-21 08:10:59 -04:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
|
|
|
export TARGET_OS=OS_ANDROID_CROSSCOMPILE; \
|
2016-04-13 14:14:04 -04:00
|
|
|
export CPPFLAGS="$${CPPFLAGS} -I${OPENSSL_DIR}/include ${TARGET_CFLAGS_ADDON}"; \
|
2014-04-21 08:10:59 -04:00
|
|
|
export CFLAGS="$${CFLAGS} ${TARGET_CFLAGS_ADDON}"; \
|
2015-01-04 18:48:33 -05:00
|
|
|
export LDFLAGS="$${LDFLAGS} -L${OPENSSL_DIR} ${TARGET_LDFLAGS_ADDON}"; \
|
2014-04-21 08:10:59 -04:00
|
|
|
./configure --host=${TARGET_HOST} --disable-shared --enable-static --with-ssl; \
|
2015-03-17 10:48:48 -04:00
|
|
|
$(MAKE) -s || exit 1; \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${CURL_TIMESTAMP}; \
|
|
|
|
touch ${CURL_TIMESTAMP_INT}; \
|
2015-01-04 18:48:33 -05:00
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
2014-04-21 08:10:59 -04:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for curl"; \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean_curl :
|
2015-01-15 15:51:54 -05:00
|
|
|
$(RM) -rf deps/curl-${CURL_VERSION} \
|
|
|
|
$(RM) -f deps/curl
|
2015-04-12 00:18:48 -04:00
|
|
|
|
|
|
|
$(GMP_TIMESTAMP) : gmp_download
|
|
|
|
@LAST_MODIF=$$(find ${GMP_DIR} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ] ; then \
|
|
|
|
touch ${GMP_TIMESTAMP}; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
gmp_download :
|
|
|
|
@if [ ! -d "${GMP_DIR}" ] ; then \
|
|
|
|
echo "gmp sources missing, downloading..."; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${ANDR_ROOT}/deps; \
|
2015-04-12 00:18:48 -04:00
|
|
|
cd deps; \
|
|
|
|
wget ${GMP_URL_HTTP} || exit 1; \
|
|
|
|
tar -xjf gmp-${GMP_VERSION}.tar.bz2 || exit 1; \
|
|
|
|
rm gmp-${GMP_VERSION}.tar.bz2; \
|
|
|
|
ln -s gmp-${GMP_VERSION} gmp; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
gmp : $(GMP_LIB)
|
|
|
|
|
|
|
|
$(GMP_LIB): $(GMP_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${GMP_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e ${GMP_LIB} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${GMP_TIMESTAMP} -nt ${GMP_TIMESTAMP_INT} ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
mkdir -p ${GMP_DIR}; \
|
|
|
|
echo "changed timestamp for gmp detected building..."; \
|
|
|
|
cd deps/gmp-${GMP_VERSION}; \
|
|
|
|
export CROSS_PREFIX=${CROSS_PREFIX}; \
|
|
|
|
export TOOLCHAIN=/tmp/ndk-${TARGET_HOST}-gmp; \
|
|
|
|
${ANDROID_NDK}/build/tools/make-standalone-toolchain.sh \
|
2016-04-13 14:14:04 -04:00
|
|
|
--toolchain=${TARGET_TOOLCHAIN}${COMPILER_VERSION} \
|
|
|
|
--install-dir=$${TOOLCHAIN}; \
|
2015-04-12 00:18:48 -04:00
|
|
|
export PATH="$${TOOLCHAIN}/bin:$${PATH}"; \
|
|
|
|
export CC=${CROSS_PREFIX}gcc; \
|
|
|
|
export CXX=${CROSS_PREFIX}g++; \
|
2015-05-14 23:02:19 -04:00
|
|
|
export LIBGMP_LDFLAGS="-avoid-version"; \
|
|
|
|
export LIBGMPXX_LDFLAGS="-avoid-version"; \
|
2015-04-12 00:18:48 -04:00
|
|
|
./configure --disable-static --host=${TARGET_HOST} --prefix=/usr; \
|
|
|
|
$(MAKE) install DESTDIR=/${GMP_DIR} || exit 1; \
|
|
|
|
touch ${GMP_TIMESTAMP}; \
|
|
|
|
touch ${GMP_TIMESTAMP_INT}; \
|
|
|
|
$(RM) -rf $${TOOLCHAIN}; \
|
|
|
|
else \
|
|
|
|
echo "nothing to be done for gmp"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_gmp:
|
|
|
|
$(RM) -rf deps/gmp-${GMP_VERSION} \
|
|
|
|
$(RM) -f deps/gmp
|
|
|
|
|
2015-01-06 19:01:03 -05:00
|
|
|
sqlite3_download: deps/${SQLITE3_FOLDER}/sqlite3.c
|
|
|
|
|
|
|
|
deps/${SQLITE3_FOLDER}/sqlite3.c :
|
|
|
|
cd deps; \
|
|
|
|
wget ${SQLITE3_URL}; \
|
|
|
|
unzip ${SQLITE3_FOLDER}.zip; \
|
|
|
|
ln -s ${SQLITE3_FOLDER} sqlite
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2015-01-06 19:01:03 -05:00
|
|
|
clean_sqlite3:
|
|
|
|
cd deps && $(RM) -rf ${SQLITE3_FOLDER} && $(RM) -f ${SQLITE3_FOLDER}.zip && \
|
|
|
|
$(RM) -f sqlite
|
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
$(ASSETS_TIMESTAMP) : $(IRRLICHT_LIB)
|
2016-04-13 14:14:04 -04:00
|
|
|
@mkdir -p ${ANDR_ROOT}/deps; \
|
2015-06-20 01:39:28 -04:00
|
|
|
for DIRNAME in {builtin,client,doc,fonts,games,mods,po,textures}; do \
|
2016-04-13 14:14:04 -04:00
|
|
|
LAST_MODIF=$$(find ${PROJ_ROOT}/${DIRNAME} -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "); \
|
2015-06-20 01:39:28 -04:00
|
|
|
if [ $$(basename $$LAST_MODIF) != "timestamp" ]; then \
|
2016-04-13 14:14:04 -04:00
|
|
|
touch ${PROJ_ROOT}/${DIRNAME}/timestamp; \
|
2015-06-20 01:39:28 -04:00
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
echo ${DIRNAME} changed $$LAST_MODIF; \
|
|
|
|
fi; \
|
|
|
|
done; \
|
2014-04-21 08:10:59 -04: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-13 14:14:04 -04:00
|
|
|
if [ ${PROJ_ROOT}/minetest.conf.example -nt ${ASSETS_TIMESTAMP} ] ; then \
|
2014-04-21 08:10:59 -04:00
|
|
|
echo "conf changed"; \
|
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
fi; \
|
2016-04-13 14:14:04 -04:00
|
|
|
if [ ${PROJ_ROOT}/README.txt -nt ${ASSETS_TIMESTAMP} ] ; then \
|
2014-04-21 08:10:59 -04:00
|
|
|
touch ${ASSETS_TIMESTAMP}; \
|
|
|
|
fi; \
|
|
|
|
if [ ! -e $(ASSETS_TIMESTAMP) ] ; then \
|
|
|
|
touch $(ASSETS_TIMESTAMP); \
|
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
assets : $(ASSETS_TIMESTAMP)
|
|
|
|
@REFRESH=0; \
|
|
|
|
if [ ! -e ${ASSETS_TIMESTAMP}.old ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ ${ASSETS_TIMESTAMP} -nt ${ASSETS_TIMESTAMP}.old ] ; then \
|
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
2016-04-13 14:14:04 -04:00
|
|
|
if [ ! -d ${APP_ROOT}/assets ] ; then \
|
2014-04-21 08:10:59 -04:00
|
|
|
REFRESH=1; \
|
|
|
|
fi; \
|
|
|
|
if [ $$REFRESH -ne 0 ] ; then \
|
|
|
|
echo "assets changed, refreshing..."; \
|
2015-03-17 10:48:48 -04:00
|
|
|
$(MAKE) clean_assets; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest; \
|
|
|
|
cp ${PROJ_ROOT}/minetest.conf.example ${APP_ROOT}/assets/Minetest; \
|
|
|
|
cp ${PROJ_ROOT}/README.txt ${APP_ROOT}/assets/Minetest; \
|
|
|
|
cp -r ${PROJ_ROOT}/builtin ${APP_ROOT}/assets/Minetest; \
|
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest/client; \
|
|
|
|
cp -r ${PROJ_ROOT}/client/shaders ${APP_ROOT}/assets/Minetest/client; \
|
|
|
|
cp ${PROJ_ROOT}/doc/lgpl-2.1.txt ${APP_ROOT}/assets/Minetest/LICENSE.txt; \
|
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest/fonts; \
|
|
|
|
cp -r ${PROJ_ROOT}/fonts/*.ttf ${APP_ROOT}/assets/Minetest/fonts/; \
|
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest/games; \
|
2015-08-24 14:37:14 -04:00
|
|
|
for game in ${GAMES_TO_COPY}; do \
|
2016-04-13 14:14:04 -04:00
|
|
|
cp -r ${PROJ_ROOT}/games/$$game ${APP_ROOT}/assets/Minetest/games/; \
|
2015-01-06 10:01:49 -05:00
|
|
|
done; \
|
2016-04-13 14:14:04 -04:00
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest/mods; \
|
2015-08-24 14:37:14 -04:00
|
|
|
for mod in ${MODS_TO_COPY}; do \
|
2016-04-13 14:14:04 -04:00
|
|
|
cp -r ${PROJ_ROOT}/mods/$$mod ${APP_ROOT}/assets/Minetest/mods/; \
|
2015-08-24 14:37:14 -04:00
|
|
|
done; \
|
2016-04-13 14:14:04 -04:00
|
|
|
cp -r ${PROJ_ROOT}/po ${APP_ROOT}/assets/Minetest; \
|
|
|
|
cp -r ${PROJ_ROOT}/textures ${APP_ROOT}/assets/Minetest; \
|
|
|
|
mkdir -p ${APP_ROOT}/assets/Minetest/media; \
|
|
|
|
cp -r ${IRRLICHT_DIR}/media/Shaders ${APP_ROOT}/assets/Minetest/media; \
|
|
|
|
cd ${APP_ROOT}/assets || exit 1; \
|
2014-04-21 08:10:59 -04:00
|
|
|
find . -name "timestamp" -exec rm {} \; ; \
|
|
|
|
find . -name "*.blend" -exec rm {} \; ; \
|
2015-01-06 10:01:49 -05: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 08:10:59 -04:00
|
|
|
ls -R | grep ":$$" | sed -e 's/:$$//' -e 's/\.//' -e 's/^\///' > "index.txt"; \
|
2016-04-13 14:14:04 -04:00
|
|
|
find -L Minetest > filelist.txt; \
|
|
|
|
cp ${ANDR_ROOT}/${ASSETS_TIMESTAMP} ${ANDR_ROOT}/${ASSETS_TIMESTAMP}.old; \
|
2014-04-21 08:10:59 -04:00
|
|
|
else \
|
|
|
|
echo "nothing to be done for assets"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
clean_assets :
|
|
|
|
@$(RM) -r assets
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
apk: local.properties assets $(ICONV_LIB) $(IRRLICHT_LIB) $(CURL_LIB) $(GMP_LIB) $(LEVELDB_TARGET) \
|
|
|
|
$(OPENAL_LIB) $(OGG_LIB) prep_srcdir $(ANDR_ROOT)/jni/src/android_version.h \
|
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h sqlite3_download
|
2016-05-12 18:14:24 -04:00
|
|
|
+ @${ANDROID_NDK}/ndk-build NDK_MODULE_PATH=${NDK_MODULE_PATH} \
|
2016-04-13 14:14:04 -04:00
|
|
|
GPROF=${GPROF} APP_ABI=${TARGET_ABI} HAVE_LEVELDB=${HAVE_LEVELDB} \
|
|
|
|
APP_PLATFORM=${APP_PLATFORM} \
|
|
|
|
TARGET_LIBDIR=${TARGET_LIBDIR} \
|
|
|
|
TARGET_CFLAGS+="${TARGET_CFLAGS_ADDON}" \
|
|
|
|
TARGET_LDFLAGS+="${TARGET_LDFLAGS_ADDON}" \
|
|
|
|
TARGET_CXXFLAGS+="${TARGET_CXXFLAGS_ADDON}" || exit 1; \
|
|
|
|
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 && \
|
|
|
|
echo "APK stored at: build/outputs/apk/Minetest-$$BUILD_TYPE.apk" && \
|
|
|
|
echo "You can install it with \`make install_$$BUILD_TYPE\`"
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
install_release:
|
|
|
|
${ANDROID_SDK}/platform-tools/adb install -r build/outputs/apk/Minetest-release.apk
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
prep_srcdir :
|
2016-04-13 14:14:04 -04: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-30 23:52:34 -04:00
|
|
|
fi
|
2015-04-12 00:18:48 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
clean_apk :
|
|
|
|
gradle clean
|
2015-04-12 00:18:48 -04:00
|
|
|
|
|
|
|
clean_all :
|
2015-03-17 10:48:48 -04:00
|
|
|
@$(MAKE) clean_apk; \
|
2016-04-13 14:14:04 -04:00
|
|
|
$(MAKE) clean_assets clean_iconv clean_irrlicht clean_leveldb clean_curl \
|
|
|
|
clean_openssl clean_openal clean_ogg clean_gmp; \
|
2014-04-21 08:10:59 -04:00
|
|
|
sleep 1; \
|
|
|
|
$(RM) -r gen libs obj deps bin Debug and_env
|
2015-03-28 06:25:34 -04:00
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version_githash.h : prep_srcdir
|
|
|
|
@export VERSION_FILE=${ANDR_ROOT}/jni/src/android_version_githash.h; \
|
2015-07-31 10:38:36 -04:00
|
|
|
export VERSION_FILE_NEW=$${VERSION_FILE}.new; \
|
|
|
|
{ \
|
|
|
|
echo "#ifndef ANDROID_MT_VERSION_GITHASH_H"; \
|
|
|
|
echo "#define ANDROID_MT_VERSION_GITHASH_H"; \
|
|
|
|
export GITHASH=$$(git rev-parse --short=8 HEAD); \
|
|
|
|
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 \
|
|
|
|
echo "android_version_githash.h changed, updating..."; \
|
|
|
|
mv "$${VERSION_FILE_NEW}" "$${VERSION_FILE}"; \
|
|
|
|
else \
|
|
|
|
rm "$${VERSION_FILE_NEW}"; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2016-04-13 14:14:04 -04:00
|
|
|
$(ANDR_ROOT)/jni/src/android_version.h : prep_srcdir
|
|
|
|
@export VERSION_FILE=${ANDR_ROOT}/jni/src/android_version.h; \
|
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-30 23:52:34 -04:00
|
|
|
export VERSION_FILE_NEW=$${VERSION_FILE}.new; \
|
|
|
|
{ \
|
2015-07-30 22:51:57 -04:00
|
|
|
echo "#ifndef ANDROID_MT_VERSION_H"; \
|
|
|
|
echo "#define ANDROID_MT_VERSION_H"; \
|
2015-07-31 10:38:36 -04:00
|
|
|
echo "#define VERSION_MAJOR ${VERSION_MAJOR}"; \
|
|
|
|
echo "#define VERSION_MINOR ${VERSION_MINOR}"; \
|
|
|
|
echo "#define VERSION_PATCH ${VERSION_PATCH}"; \
|
2016-01-23 00:26:58 -05:00
|
|
|
echo "#define VERSION_STRING STR(VERSION_MAJOR) \".\" STR(VERSION_MINOR) \
|
|
|
|
\".\" STR(VERSION_PATCH)"; \
|
2015-07-30 22:51:57 -04:00
|
|
|
echo "#endif"; \
|
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-30 23:52:34 -04:00
|
|
|
} > $${VERSION_FILE_NEW}; \
|
|
|
|
if ! cmp -s $${VERSION_FILE} $${VERSION_FILE_NEW}; then \
|
|
|
|
echo "android_version.h changed, updating..."; \
|
2015-07-31 10:38:36 -04:00
|
|
|
mv "$${VERSION_FILE_NEW}" "$${VERSION_FILE}"; \
|
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-30 23:52:34 -04:00
|
|
|
else \
|
2015-07-31 10:38:36 -04:00
|
|
|
rm "$${VERSION_FILE_NEW}"; \
|
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-30 23:52:34 -04:00
|
|
|
fi
|
2015-03-28 06:25:34 -04:00
|
|
|
|
2014-04-21 08:10:59 -04:00
|
|
|
clean : clean_apk clean_assets
|
2016-04-13 14:14:04 -04:00
|
|
|
|