]> git.lizzy.rs Git - rust.git/blob - mk/install.mk
auto merge of #20436 : alexcrichton/rust/rollup, r=alexcrichton
[rust.git] / mk / install.mk
1 # Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 # file at the top-level directory of this distribution and at
3 # http://rust-lang.org/COPYRIGHT.
4 #
5 # Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 # http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 # <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 # option. This file may not be copied, modified, or distributed
9 # except according to those terms.
10
11 ifdef CFG_DISABLE_VERIFY_INSTALL
12 MAYBE_DISABLE_VERIFY=--disable-verify
13 else
14 MAYBE_DISABLE_VERIFY=
15 endif
16
17 install:
18 ifeq (root user, $(USER) $(patsubst %,user,$(SUDO_USER)))
19 # Build the dist as the original user
20         $(Q)sudo -u "$$SUDO_USER" $(MAKE) prepare_install
21 else
22         $(Q)$(MAKE) prepare_install
23 endif
24 ifeq ($(CFG_DISABLE_DOCS),)
25         $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
26 endif
27         $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)" "$(MAYBE_DISABLE_VERIFY)"
28 # Remove tmp files because it's a decent amount of disk space
29         $(Q)rm -R tmp/dist
30
31 ifeq ($(CFG_DISABLE_DOCS),)
32 prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz dist/$(DOC_PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
33 else
34 prepare_install: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
35 endif
36
37 uninstall:
38 ifeq (root user, $(USER) $(patsubst %,user,$(SUDO_USER)))
39 # Build the dist as the original user
40         $(Q)sudo -u "$$SUDO_USER" $(MAKE) prepare_uninstall
41 else
42         $(Q)$(MAKE) prepare_uninstall
43 endif
44 ifeq ($(CFG_DISABLE_DOCS),)
45         $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(DOC_PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
46 endif
47         $(Q)cd tmp/empty_dir && sh ../../tmp/dist/$(PKG_NAME)-$(CFG_BUILD)/install.sh --uninstall --prefix="$(DESTDIR)$(CFG_PREFIX)" --libdir="$(DESTDIR)$(CFG_LIBDIR)" --mandir="$(DESTDIR)$(CFG_MANDIR)"
48 # Remove tmp files because it's a decent amount of disk space
49         $(Q)rm -R tmp/dist
50
51 prepare_uninstall: dist/$(PKG_NAME)-$(CFG_BUILD).tar.gz | tmp/empty_dir
52
53 .PHONY: install prepare_install uninstall prepare_uninstall
54
55 tmp/empty_dir:
56         mkdir -p $@
57
58 ######################################################################
59 # Android remote installation
60 ######################################################################
61
62 # Android runtime setup
63 # FIXME: This probably belongs somewhere else
64
65 # target platform specific variables
66 # for arm-linux-androidabi
67 define DEF_ADB_DEVICE_STATUS
68 CFG_ADB_DEVICE_STATUS=$(1)
69 endef
70
71 $(foreach target,$(CFG_TARGET), \
72   $(if $(findstring $(target),"arm-linux-androideabi"), \
73     $(if $(findstring adb,$(CFG_ADB)), \
74       $(if $(findstring device,$(shell $(CFG_ADB) devices 2>/dev/null | grep -E '^[_A-Za-z0-9-]+[[:blank:]]+device')), \
75         $(info install: install-runtime-target for $(target) enabled \
76           $(info install: android device attached) \
77           $(eval $(call DEF_ADB_DEVICE_STATUS, true))), \
78         $(info install: install-runtime-target for $(target) disabled \
79           $(info install: android device not attached) \
80           $(eval $(call DEF_ADB_DEVICE_STATUS, false))) \
81       ), \
82       $(info install: install-runtime-target for $(target) disabled \
83         $(info install: adb not found) \
84         $(eval $(call DEF_ADB_DEVICE_STATUS, false))) \
85     ), \
86   ) \
87 )
88
89 ifeq (install-runtime-target,$(firstword $(MAKECMDGOALS)))
90 $(eval $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS)):;@:)
91 L_TOKEN := $(word 2,$(MAKECMDGOALS))
92 ifeq ($(L_TOKEN),)
93 CFG_RUNTIME_PUSH_DIR=/system/lib
94 else
95 CFG_RUNTIME_PUSH_DIR=$(L_TOKEN)
96 endif
97
98 ifeq ($(CFG_ADB_DEVICE_STATUS),true)
99 ifdef VERBOSE
100  ADB = adb $(1)
101  ADB_PUSH = adb push $(1) $(2)
102  ADB_SHELL = adb shell $(1) $(2)
103 else
104  ADB = $(Q)$(call E, adb $(1)) && adb $(1) 1>/dev/null
105  ADB_PUSH = $(Q)$(call E, adb push $(1)) && adb push $(1) $(2) 1>/dev/null
106  ADB_SHELL = $(Q)$(call E, adb shell $(1) $(2)) && adb shell $(1) $(2) 1>/dev/null
107 endif
108
109 define INSTALL_RUNTIME_TARGET_N
110 install-runtime-target-$(1)-host-$(2): $$(TSREQ$$(ISTAGE)_T_$(1)_H_$(2)) $$(SREQ$$(ISTAGE)_T_$(1)_H_$(2))
111         $$(Q)$$(call ADB_SHELL,mkdir,$(CFG_RUNTIME_PUSH_DIR))
112         $$(Q)$$(foreach crate,$$(TARGET_CRATES), \
113             $$(call ADB_PUSH,$$(TL$(1)$(2))/$$(call CFG_LIB_GLOB_$(1),$$(crate)), \
114                         $$(CFG_RUNTIME_PUSH_DIR));)
115 endef
116
117 define INSTALL_RUNTIME_TARGET_CLEANUP_N
118 install-runtime-target-$(1)-cleanup:
119         $$(Q)$$(call ADB,remount)
120         $$(Q)$$(foreach crate,$$(TARGET_CRATES), \
121             $$(call ADB_SHELL,rm,$$(CFG_RUNTIME_PUSH_DIR)/$$(call CFG_LIB_GLOB_$(1),$$(crate)));)
122 endef
123
124 $(eval $(call INSTALL_RUNTIME_TARGET_N,arm-linux-androideabi,$(CFG_BUILD)))
125 $(eval $(call INSTALL_RUNTIME_TARGET_CLEANUP_N,arm-linux-androideabi))
126
127 install-runtime-target: \
128         install-runtime-target-arm-linux-androideabi-cleanup \
129         install-runtime-target-arm-linux-androideabi-host-$(CFG_BUILD)
130 else
131 install-runtime-target:
132         @echo "No device to install runtime library"
133         @echo
134 endif
135 endif