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:
authorRaja R Harinath <harinath@hurrynot.org>2005-03-14 13:40:32 +0300
committerRaja R Harinath <harinath@hurrynot.org>2005-03-14 13:40:32 +0300
commit909c44ffc80138301ec7a1410ac034dd7f749a45 (patch)
tree44ce265fc8dc4221563e45f78f221ccc6bcec75e /runtime
parent3be87c91e7d14f29a48be9d0b43c17f6e266a47c (diff)
* runtime/Makefile.am (clean_profiles): Remove.
(clean-local): Use $(build_profiles). (install-local, uninstall-local): Don't override $(prefix). svn path=/trunk/mono/; revision=41787
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