2012-12-11 02:32:48 +01:00
|
|
|
# Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
2014-03-28 10:43:31 +01:00
|
|
|
ifdef CFG_DISABLE_VERIFY_INSTALL
|
|
|
|
MAYBE_DISABLE_VERIFY=--disable-verify
|
|
|
|
else
|
|
|
|
MAYBE_DISABLE_VERIFY=
|
|
|
|
endif
|
2011-10-26 06:18:22 +02:00
|
|
|
|
2014-04-04 18:17:30 +02:00
|
|
|
install: dist-install-dir-$(CFG_BUILD)-with-target-libs
|
2014-03-29 04:55:45 +01:00
|
|
|
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
|
2014-03-26 20:06:35 +01:00
|
|
|
# Remove tmp files while we can because they may have been created under sudo
|
2014-03-31 05:14:32 +02:00
|
|
|
$(Q)rm -R tmp/dist
|
2011-10-01 04:00:19 +02:00
|
|
|
|
2014-04-04 18:17:30 +02:00
|
|
|
uninstall: dist-install-dir-$(CFG_BUILD)-with-target-libs
|
2014-03-29 04:55:45 +01:00
|
|
|
$(Q)sh tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
|
2014-03-28 10:43:31 +01:00
|
|
|
# Remove tmp files while we can because they may have been created under sudo
|
2014-03-31 05:14:32 +02:00
|
|
|
$(Q)rm -R tmp/dist
|
2014-03-25 23:26:51 +01:00
|
|
|
|
2013-05-01 11:49:19 +02:00
|
|
|
|
2014-03-26 01:54:26 +01:00
|
|
|
######################################################################
|
|
|
|
# Android remote installation
|
|
|
|
######################################################################
|
2014-02-13 08:53:36 +01:00
|
|
|
|
|
|
|
# Android runtime setup
|
|
|
|
# FIXME: This probably belongs somewhere else
|
|
|
|
|
2013-05-01 11:49:19 +02:00
|
|
|
# target platform specific variables
|
|
|
|
# for arm-linux-androidabi
|
2013-05-03 17:47:54 +02:00
|
|
|
define DEF_ADB_DEVICE_STATUS
|
|
|
|
CFG_ADB_DEVICE_STATUS=$(1)
|
2013-05-01 11:49:19 +02:00
|
|
|
endef
|
|
|
|
|
2013-10-21 11:18:21 +02:00
|
|
|
$(foreach target,$(CFG_TARGET), \
|
2013-05-01 11:49:19 +02:00
|
|
|
$(if $(findstring $(target),"arm-linux-androideabi"), \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(if $(findstring adb,$(CFG_ADB)), \
|
2013-08-07 13:42:44 +02:00
|
|
|
$(if $(findstring device,$(shell $(CFG_ADB) devices 2>/dev/null | grep -E '^[_A-Za-z0-9-]+[[:blank:]]+device')), \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(info install: install-runtime-target for $(target) enabled \
|
2013-05-01 11:49:19 +02:00
|
|
|
$(info install: android device attached) \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(eval $(call DEF_ADB_DEVICE_STATUS, true))), \
|
|
|
|
$(info install: install-runtime-target for $(target) disabled \
|
2013-05-01 11:49:19 +02:00
|
|
|
$(info install: android device not attached) \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(eval $(call DEF_ADB_DEVICE_STATUS, false))) \
|
2013-05-01 11:49:19 +02:00
|
|
|
), \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(info install: install-runtime-target for $(target) disabled \
|
2013-05-01 11:49:19 +02:00
|
|
|
$(info install: adb not found) \
|
2013-05-03 17:47:54 +02:00
|
|
|
$(eval $(call DEF_ADB_DEVICE_STATUS, false))) \
|
2013-05-01 11:49:19 +02:00
|
|
|
), \
|
|
|
|
) \
|
|
|
|
)
|
|
|
|
|
2013-05-03 17:47:54 +02:00
|
|
|
ifeq (install-runtime-target,$(firstword $(MAKECMDGOALS)))
|
|
|
|
$(eval $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)):;@:)
|
|
|
|
L_TOKEN := $(word 2,$(MAKECMDGOALS))
|
|
|
|
ifeq ($(L_TOKEN),)
|
2013-05-03 04:14:01 +02:00
|
|
|
CFG_RUNTIME_PUSH_DIR=/system/lib
|
2013-05-03 17:47:54 +02:00
|
|
|
else
|
|
|
|
CFG_RUNTIME_PUSH_DIR=$(L_TOKEN)
|
|
|
|
endif
|
2013-05-03 04:14:01 +02:00
|
|
|
|
2013-05-03 17:47:54 +02:00
|
|
|
ifeq ($(CFG_ADB_DEVICE_STATUS),true)
|
2013-05-01 11:49:19 +02:00
|
|
|
ifdef VERBOSE
|
|
|
|
ADB = adb $(1)
|
|
|
|
ADB_PUSH = adb push $(1) $(2)
|
2013-05-07 03:09:34 +02:00
|
|
|
ADB_SHELL = adb shell $(1) $(2)
|
2013-05-01 11:49:19 +02:00
|
|
|
else
|
2013-05-07 03:09:34 +02:00
|
|
|
ADB = $(Q)$(call E, adb $(1)) && adb $(1) 1>/dev/null
|
2013-05-03 17:47:54 +02:00
|
|
|
ADB_PUSH = $(Q)$(call E, adb push $(1)) && adb push $(1) $(2) 1>/dev/null
|
|
|
|
ADB_SHELL = $(Q)$(call E, adb shell $(1) $(2)) && adb shell $(1) $(2) 1>/dev/null
|
2013-05-01 11:49:19 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
define INSTALL_RUNTIME_TARGET_N
|
|
|
|
install-runtime-target-$(1)-host-$(2): $$(TSREQ$$(ISTAGE)_T_$(1)_H_$(2)) $$(SREQ$$(ISTAGE)_T_$(1)_H_$(2))
|
2014-01-29 08:29:38 +01:00
|
|
|
$$(Q)$$(call ADB_SHELL,mkdir,$(CFG_RUNTIME_PUSH_DIR))
|
|
|
|
$$(Q)$$(foreach crate,$$(TARGET_CRATES),\
|
|
|
|
$$(call ADB_PUSH,$$(TL$(1)$(2))/$$(call CFG_LIB_GLOB_$(1),$$(crate)),\
|
|
|
|
$$(CFG_RUNTIME_PUSH_DIR));)
|
2013-05-01 11:49:19 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
define INSTALL_RUNTIME_TARGET_CLEANUP_N
|
|
|
|
install-runtime-target-$(1)-cleanup:
|
2014-01-29 08:29:38 +01:00
|
|
|
$$(Q)$$(call ADB,remount)
|
|
|
|
$$(Q)$$(foreach crate,$$(TARGET_CRATES),\
|
|
|
|
$$(call ADB_SHELL,rm,$$(CFG_RUNTIME_PUSH_DIR)/$$(call CFG_LIB_GLOB_$(1),$$(crate)));)
|
2013-05-01 11:49:19 +02:00
|
|
|
endef
|
|
|
|
|
2013-10-21 11:18:21 +02:00
|
|
|
$(eval $(call INSTALL_RUNTIME_TARGET_N,arm-linux-androideabi,$(CFG_BUILD)))
|
2013-05-01 11:49:19 +02:00
|
|
|
$(eval $(call INSTALL_RUNTIME_TARGET_CLEANUP_N,arm-linux-androideabi))
|
|
|
|
|
|
|
|
install-runtime-target: \
|
|
|
|
install-runtime-target-arm-linux-androideabi-cleanup \
|
2013-10-21 11:18:21 +02:00
|
|
|
install-runtime-target-arm-linux-androideabi-host-$(CFG_BUILD)
|
2013-05-01 11:49:19 +02:00
|
|
|
else
|
2013-05-07 03:09:34 +02:00
|
|
|
install-runtime-target:
|
2013-05-03 17:47:54 +02:00
|
|
|
@echo "No device to install runtime library"
|
2013-05-07 03:09:34 +02:00
|
|
|
@echo
|
2013-05-03 17:47:54 +02:00
|
|
|
endif
|
2013-05-01 11:49:19 +02:00
|
|
|
endif
|