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:
authorMarek Safar <marek.safar@gmail.com>2016-12-15 21:04:31 +0300
committerMarek Safar <marek.safar@gmail.com>2016-12-15 21:04:31 +0300
commit59b8a5d3bae8f55c7fa31080a0c1b9e88d4419b8 (patch)
treeeb8ec26eb227a8f43086ba55d9e674bdfb5ab4b2 /mcs/class/aot-compiler
parentaf10ff717e227acc2c41a4dd82b435afa52e5936 (diff)
[build] Update list of aoted images in mcs mode
Diffstat (limited to 'mcs/class/aot-compiler')
-rw-r--r--mcs/class/aot-compiler/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/mcs/class/aot-compiler/Makefile b/mcs/class/aot-compiler/Makefile
index be6d85f087c..31a75b946d7 100644
--- a/mcs/class/aot-compiler/Makefile
+++ b/mcs/class/aot-compiler/Makefile
@@ -69,11 +69,13 @@ clean-local:
# AOT build profile mcs to speed up build
ifeq ($(PROFILE),build)
+
+IMAGES = $(mscorlib_aot_image) $(csc_aot_image) $(csc_SRM_image) $(csc_SCI_image)
ifdef MCS_MODE
-all-local: $(mscorlib_aot_image) $(mcs_aot_image)
-else
-all-local: $(mscorlib_aot_image) $(csc_aot_image) $(csc_SRM_image) $(csc_SCI_image)
+ IMAGES += $(mcs_aot_image)
endif
+
+all-local: $(IMAGES)
install-local:
endif