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>2010-12-16 12:59:39 +0300
committerMarek Safar <marek.safar@gmail.com>2010-12-16 12:59:39 +0300
commit49b0253a7fb0cc7bc3500727d028bf6712b09bfb (patch)
tree99f3310db720f4e5de2f68d3c999d71ece54cf88 /mcs/class/aot-compiler
parentf9d82bd990d1fe8a9f8b266f6dc66b45de96ac1f (diff)
Switch to single mcs compiler for all managed code build
Diffstat (limited to 'mcs/class/aot-compiler')
-rw-r--r--mcs/class/aot-compiler/Makefile13
1 files changed, 1 insertions, 12 deletions
diff --git a/mcs/class/aot-compiler/Makefile b/mcs/class/aot-compiler/Makefile
index 567c7dbcb75..af2fea01777 100644
--- a/mcs/class/aot-compiler/Makefile
+++ b/mcs/class/aot-compiler/Makefile
@@ -10,12 +10,7 @@ include ../../build/rules.make
the_libdir = $(topdir)/class/lib/$(PROFILE)/
-ifeq (net_2_0, $(PROFILE))
-mcs_exe = $(the_libdir)/gmcs.exe
-else ifeq (net_4_0, $(PROFILE))
-mcs_exe = $(the_libdir)/dmcs.exe
-endif
-
+mcs_exe = $(the_libdir)/mcs.exe
mcs_aot_image = $(mcs_exe)$(PLATFORM_AOT_SUFFIX)
mscorlib_dll = $(the_libdir)/mscorlib.dll
@@ -34,13 +29,7 @@ $(mscorlib_aot_image): $(mscorlib_dll)
ifdef ENABLE_AOT
-ifeq (net_2_0, $(PROFILE))
-all-local: $(mscorlib_aot_image) $(mcs_aot_image)
-endif
-
-ifeq (net_4_0, $(PROFILE))
all-local: $(mscorlib_aot_image) $(mcs_aot_image)
-endif
clean-local:
-rm -f $(mscorlib_aot_image) $(mcs_aot_image) $(PROFILE)_aot.log