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:
authorZoltan Varga <vargaz@gmail.com>2010-08-27 23:24:03 +0400
committerZoltan Varga <vargaz@gmail.com>2010-08-27 23:24:03 +0400
commit65b66d32521d4917d6a7dd49e72d4c4de8f12c35 (patch)
tree5c53c02ce62bcaee26165bb8ebf37f7b45dd65d2 /mcs/class/aot-compiler
parent16641e9c678f7493328fffc51d0f56068e209e96 (diff)
Install the generated gmcs.exe.so.
Diffstat (limited to 'mcs/class/aot-compiler')
-rw-r--r--mcs/class/aot-compiler/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/class/aot-compiler/Makefile b/mcs/class/aot-compiler/Makefile
index 18f5cc23f9c..d4a0e8fd50f 100644
--- a/mcs/class/aot-compiler/Makefile
+++ b/mcs/class/aot-compiler/Makefile
@@ -18,6 +18,8 @@ endif
mcs_aot_image = $(mcs_exe)$(PLATFORM_AOT_SUFFIX)
+PROGRAM_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
+
ifdef PLATFORM_AOT_SUFFIX
Q_AOT=$(if $(V),,@echo "AOT [$(PROFILE)] $(notdir $(@))";)
$(mcs_aot_image): $(mcs_exe)
@@ -34,4 +36,8 @@ endif
clean-local:
-rm -f $(mcs_aot_image)
+install-local:
+ $(MKINSTALLDIRS) $(DESTDIR)$(LIBRARY_INSTALL_DIR)
+ $(INSTALL_LIB) $(mcs_aot_image) $(DESTDIR)$(PROGRAM_INSTALL_DIR)
+
endif