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>2004-09-14 12:35:04 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-09-14 12:35:04 +0400
commit73c7407fb6fc72b889e9bef56c9c08f21f70367f (patch)
treef09975fbc0554b7fa95c3b1cde4daf581628a62b /Makefile.am
parentffac59b268ca4d9a7d38eb3ff8b5abac270ca9e7 (diff)
* Makefile.am (mcs-do-full-build): Pass NO_SIGN_ASSEMBLIES=yes to
reduce the number of passes. We will get the assemblies signed in the 'populate-runtime-subdir' phase. (mcs-do-run-test-profiles): Rename from mcs-do-run-tests. Use 'test-profiles' to test all profiles. (mcs-do-compiler-tests): Use 'compiler-tests' target in mcs/. (bootstrap-check): Update. * runtime/Makefile.am ($(monoone_DATA) $(monotwo_DATA) $(monobins_DATA)): Simplify. svn path=/trunk/mono/; revision=33859
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am14
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile.am b/Makefile.am
index da482b27e7b..e1e2a280915 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -79,7 +79,7 @@ fasterstrap: tmpinst-mcs-full-build
$(MAKE)
bootstrap-clean: clean mcs-do-clean-profiles
-bootstrap-check: check mcs-do-run-test
+bootstrap-check: check mcs-do-run-test-profiles
# building with monolite
@@ -137,18 +137,20 @@ mcs-do-short-build:
mcs-do-full-build:
tmpinst=`cd $(tmpinst) && pwd` ; \
PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
- cd $(mcs_topdir) && $(MAKE) all-profiles
+ cd $(mcs_topdir) && $(MAKE) NO_SIGN_ASSEMBLY=yes all-profiles
mcs-do-clean-profiles:
cd $(mcs_topdir) && $(MAKE) clean-profiles
-mcs-do-run-test: tmpinst-dir $(tmpinst)/bin/mbas
+mcs-do-run-test-profiles: tmpinst-dir $(tmpinst)/bin/mbas
tmpinst=`cd $(tmpinst) && pwd` ; \
PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
- cd $(mcs_topdir) && $(MAKE) PROFILE=default run-test
+ cd $(mcs_topdir) && $(MAKE) run-test-profiles
-mcs-do-compiler-tests:
- cd $(mcs_topdir) && $(MAKE) test-compiler
+mcs-do-compiler-tests: tmpinst-dir $(tmpinst)/bin/mbas
+ tmpinst=`cd $(tmpinst) && pwd` ; \
+ PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
+ cd $(mcs_topdir) && $(MAKE) compiler-tests
populate-runtime-subdir:
test -n '$(populate_profiles)'