Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Henry <luhenry@microsoft.com>2018-04-03 15:52:00 +0300
committerGitHub <noreply@github.com>2018-04-03 15:52:00 +0300
commitcf36124bb9069a217b2b70573f5e9756b2df0364 (patch)
tree41953f34fa5797ce71b4d72df83c83804fd60a75 /sdks/builds/Makefile
parentabebff426a0ea8c937f9979987af6e98852ca880 (diff)
[sdks] Add provisioning for Android SDK and NDK (#7928)
* [sdks] Add provisioning for Android SDK and NDK This will also be used by XA * Add missing backslash to mxe.mk * Only grab bin/autopoint * [sdks] Use provisioning for MXE We want to treat MXE the same way we do Android SDK and NDK because it only rarely changes, and it's very long to build it.
Diffstat (limited to 'sdks/builds/Makefile')
-rw-r--r--sdks/builds/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/sdks/builds/Makefile b/sdks/builds/Makefile
index 69c78e048ec..a8ede92569e 100644
--- a/sdks/builds/Makefile
+++ b/sdks/builds/Makefile
@@ -1,10 +1,13 @@
TOP=$(realpath $(CURDIR)/../..)
+-include $(TOP)/sdks/Make.config
+
+MAKEFLAGS += --no-builtin-rules
CONFIGURATION?=release
RELEASE=$(if $(filter $(CONFIGURATION),release),1)
-CCACHE:=$(shell which ccache)
+CCACHE:=$(if $(DISABLE_CCACHE),,$(shell which ccache))
UNAME=$(shell uname)
ifneq ($(UNAME),Darwin)