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:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am8
1 files changed, 3 insertions, 5 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index c4ce77a5d64..c5c4af1d14f 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -24,10 +24,8 @@ all-local: $(symlinks) mono-wrapper wrapper-config
if INSTALL_2_0
build_profiles = default net_2_0
-clean_profiles = basic net_1_1_bootstrap default net_2_0_bootstrap net_2_0
else
build_profiles = default
-clean_profiles = basic net_1_1_bootstrap default
endif
# override automake
@@ -36,7 +34,7 @@ install: install-exec install-data
# override automake
install-exec:
d=`pwd`; \
- cd $(mcs_topdir) && $(MAKE) prefix='$(exec_prefix)' PROFILES='$(build_profiles)' \
+ cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' \
RUNTIME=$$d/mono-wrapper RUNTIME_HAS_CONSISTENT_GACDIR=yes install-profiles
# override automake
@@ -46,11 +44,11 @@ install-data:
# override automake
uninstall:
d=`pwd`; \
- cd $(mcs_topdir) && $(MAKE) prefix='$(exec_prefix)' PROFILES='$(build_profiles)' \
+ cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' \
RUNTIME=$$d/mono-wrapper RUNTIME_HAS_CONSISTENT_GACDIR=yes uninstall-profiles
clean-local:
- d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(clean_profiles)' clean-profiles
+ d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles
-rm -fr $(symlinks) $(tmpinst) .wapi
if INSTALL_2_0