1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/app/Makefile.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,36 @@ 1.4 +# This Source Code Form is subject to the terms of the Mozilla Public 1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.7 + 1.8 +dist_dest = $(DIST)/$(APP_NAME).app 1.9 + 1.10 +PREF_JS_EXPORTS = $(srcdir)/mobile.js 1.11 + 1.12 +ifndef LIBXUL_SDK 1.13 +ifneq (Android,$(OS_TARGET)) 1.14 +LIBS += \ 1.15 + $(XPCOM_STANDALONE_GLUE_LDOPTS) \ 1.16 + $(NULL) 1.17 + 1.18 +endif 1.19 +endif #LIBXUL_SDK 1.20 + 1.21 +# Make sure the standalone glue doesn't try to get libxpcom.so from mobile/app. 1.22 +NSDISTMODE = copy 1.23 + 1.24 +include $(topsrcdir)/config/rules.mk 1.25 + 1.26 +APP_BINARY = $(MOZ_APP_NAME)$(BIN_SUFFIX) 1.27 + 1.28 +libs:: 1.29 +ifdef LIBXUL_SDK 1.30 + cp $(LIBXUL_DIST)/bin/xulrunner-stub$(BIN_SUFFIX) $(DIST)/bin/$(APP_BINARY) 1.31 +endif 1.32 +ifndef SKIP_COPY_XULRUNNER #{ 1.33 +ifdef LIBXUL_SDK 1.34 + $(NSINSTALL) -D $(DIST)/bin/xulrunner 1.35 + (cd $(LIBXUL_SDK)/bin && tar $(TAR_CREATE_FLAGS) - .) | (cd $(DIST)/bin/xulrunner && tar -xf -) 1.36 +endif 1.37 +endif #} SKIP_COPY_XULRUNNER 1.38 + 1.39 + $(NSINSTALL) -D $(DIST)/bin/chrome/icons/default