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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan@xamarin.com>2013-07-09 19:28:28 +0400
committerAlan McGovern <alan@xamarin.com>2013-07-09 19:30:01 +0400
commit303c0539e42f4ffcfb48cc12a1dcd6fc11d47a57 (patch)
treefdf14924aaebead72dcff70711425dce71d54a4a /Makefile
parent27b3b63d24effb1f3375a04d1d0006606e7ff476 (diff)
More better the 'make aot' target
It can now find all the required assemblies by autogenerating MONO_PATH to include all the paths we place our binaries in.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0267472d06..bd22ee07c4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
include main/monodevelop_version
EXTRA_DIST = configure
-MONO_AOT=MONO_PATH=main/build/bin:$(MONO_PATH) mono --aot --debug
+SPACE :=
+SPACE +=
+AOT_DIRECTORIES:=$(subst $(SPACE),:,$(shell find main/build/* -type d))
+MONO_AOT:=MONO_PATH=$(AOT_DIRECTORIES):$(MONO_PATH) mono --aot --debug
all: update_submodules all-recursive