2006-01-27 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / runtime / Makefile.am
index ec7e478303053067a78724989ec97ffd886398ff..1b9881a2f08c33dc45b4de4f3a5533dba65f5df1 100644 (file)
@@ -16,23 +16,24 @@ $(symlinks):
 
 SUPPORT_FILES = $(symlinks) mono-wrapper wrapper-config
 
-# The write check is to foil 'make distcheck'
-all-local: $(SUPPORT_FILES)
-       if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
-       d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' all-profiles
-
 if INSTALL_2_0
 build_profiles = default net_2_0
 else
 build_profiles = default
 endif
 
+if BUILD_MCS
+
+# The write check is to foil 'make distcheck'
+all-local: $(SUPPORT_FILES)
+       if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
+       cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' CC='$(CC)' all-profiles
+
 # override automake
 install: install-exec install-data
 
 # override automake
 install-exec: $(SUPPORT_FILES)
-       d=`pwd`; \
        cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
 
 # override automake
@@ -41,15 +42,16 @@ install-data:
 
 # override automake
 uninstall:
-       d=`pwd`; \
        cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
 
 ## semdel-wrapper will probably not delete the semaphore if someone is crazy enough to do a 'make -j distclean' :-)
 clean-local:
-       d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles
+       cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles
        -./semdel-wrapper
        -rm -fr $(etctmp) $(tmpinst) .wapi
 
+endif BUILD_MCS
+
 if INSTALL_2_0
 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs
 else
@@ -64,12 +66,11 @@ test_select = ONLY_CENTUM_TESTS=yes
 endif
 
 mcs-do-test-profiles:
-       d=`pwd`; cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' test-profiles
+       cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' test-profiles
 
 mcs-do-run-test-profiles: test-support-files
-       d=`pwd`; PATH=$$d/$(tmpinst)/bin:$$PATH ; export PATH ; \
-       ( cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' run-test-profiles ) || ret=false ; \
-       rm -fr $(tmpinst); $$ret
+       d=`cd $(tmpinst) && pwd`; PATH=$$d/bin:$$PATH ; export PATH ; \
+       cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' run-test-profiles
 
 if PLATFORM_WIN32
 cur_dir_cmd = cygpath -w -a .
@@ -81,16 +82,16 @@ endif
 
 # Use --compile-all as a poor man's PEVerify to detect invalid IL
 mcs-compileall: mono-wrapper wrapper-config
-       save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ret=:; \
+       save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
        for profile in $(build_profiles); do \
          MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; export MONO_PATH; \
          for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe $(mcs_topdir)/class/Microsoft.VisualBasic/fixup/$$profile/*.dll; do \
            if ./mono-wrapper --compile-all $$i; then \
              echo $$i verified OK; \
            else \
-             echo $$i verification failed; ret=false; \
+             echo $$i verification failed; ok=false; \
            fi; done; done; \
-       $$ret
+       $$ok
 
 check-local: mcs-compileall mcs-do-test-profiles
        $(MAKE) $(test_select) mcs-do-run-test-profiles