* AssemblyNameTest.cs: Added tests for Clone and serialization without
[mono.git] / mcs / Makefile
index 3d8978be03e1497c2e5ff9f06575391980313434..eef787d1681f415641c97c1438b568d3184e46e5 100644 (file)
@@ -1,47 +1,89 @@
 thisdir := .
-SUBDIRS := build jay mcs monoresgen class mbas nunit20 ilasm tools tests errors docs
-OVERRIDE_BARE_TARGETS = hells yeah
-include build/rules.make
-
-# Define these ourselves to that the platform checks come first
-
-#all: platform-check profile-check all-recursive #all-local
 
-.PHONY: all clean all-profiles clean-profiles install uninstall test run-test testcorlib
+SUBDIRS := build jay mcs tools/resgen class mbas nunit20 ilasm tools tests errors docs
+DIST_ONLY_SUBDIRS := gmcs
+
+basic_SUBDIRS := jay mcs class
+net_1_1_bootstrap_SUBDIRS := jay mcs class tools
+net_2_0_bootstrap_SUBDIRS := class
+net_2_0_SUBDIRS := jay gmcs class nunit20 tests errors tools
+
+# List of test subdirs that should pass 100%
+centum_tests := \
+       class/Commons.Xml.Relaxng \
+       class/Cscompmgd \
+       class/Microsoft.JScript \
+       class/Mono.Posix \
+       class/System.Configuration.Install \
+       class/System.Runtime.Serialization.Formatters.Soap \
+       class/System.Web.Services \
+       tests \
+       errors
+#      class/System
+
+default_centum_tests := \
+       class/corlib \
+       class/Mono.Security \
+       class/System.Runtime.Remoting \
+       $(centum_tests)
+
+net_2_0_centum_tests := $(centum_tests)
+
+ifdef ONLY_CENTUM_TESTS
+TEST_SUBDIRS := $($(PROFILE)_centum_tests)
+endif
+
+ifdef TEST_SUBDIRS
+$(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
+endif
 
-all: platform-check profile-check all-recursive
+include build/rules.make
 
-install: platform-check profile-check install-recursive #install-local
+all-recursive $(STD_TARGETS:=-recursive): platform-check profile-check
 
-uninstall: platform-check profile-check uninstall-recursive #uninstall-local
+.PHONY: all-local $(STD_TARGETS:=-local)
+all-local $(STD_TARGETS:=-local):
+       @:
 
-test: platform-check profile-check test-recursive #test-local
+# fun specialty targets
 
-run-test: run-test-recursive #run-test-local
+PROFILES = default net_2_0
 
-run-test-ondotnet: run-test-ondotnet-recursive # run-test-ondotnet-local
+.PHONY: all-profiles $(STD_TARGETS:=-profiles)
+all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
+       @:
 
-clean: clean-recursive #clean-local
+profiles-do--%:
+       $(MAKE) $(PROFILES:%=profile-do--%--$*)
 
-# fun specialty targets
+# The % below looks like profile-name--target-name
+profile-do--%:
+       $(MAKE) PROFILE=$(subst --, ,$*)
 
-all-profiles:
-       $(MAKE) PROFILE=default all
-       $(MAKE) PROFILE=net_2_0 all
+# We don't want to run the tests in parallel.  We want behaviour like -k.
+profiles-do--run-test:
+       ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
 
-clean-profiles:
-       $(MAKE) PROFILE=default clean
-       $(MAKE) PROFILE=net_2_0 clean
+# Orchestrate the bootstrap here.
+_boot_ = all clean install
+$(_boot_:%=profile-do--net_2_0--%):           profile-do--net_2_0--%:           profile-do--net_2_0_bootstrap--%
+$(_boot_:%=profile-do--net_2_0_bootstrap--%): profile-do--net_2_0_bootstrap--%: profile-do--default--%
+$(_boot_:%=profile-do--default--%):           profile-do--default--%:           profile-do--net_1_1_bootstrap--%
+ifeq (linux, $(PLATFORM))
+$(_boot_:%=profile-do--net_1_1_bootstrap--%): profile-do--net_1_1_bootstrap--%: profile-do--basic--%
+endif
 
 testcorlib:
        @cd class/corlib && $(MAKE) test run-test
 
-# Disting. We need to override $(distdir) here.
+compiler-tests:
+       $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
+
+test-installed-compiler:
+       $(MAKE) TEST_SUBDIRS="tests errors" PROFILE=default TEST_RUNTIME=mono MCS=mcs run-test
+       $(MAKE) TEST_SUBDIRS="tests errors" PROFILE=net_2_0 TEST_RUNTIME=mono MCS=gmcs run-test
 
 package := mcs-$(VERSION)
-top_distdir = $(dots)/$(package)
-distdir = $(top_distdir)
-export package
 
 DISTFILES = \
        AUTHORS                 \
@@ -58,18 +100,19 @@ DISTFILES = \
        MonoIcon.png            \
        README                  \
        ScalableMonoIcon.svg    \
-       winexe.in
+       winexe.in               \
+       nunit.key
+
+dist-local: dist-default
 
 dist-pre:
        rm -rf $(package)
+       mkdir $(package)
 
-dist-post:
+dist-tarball: dist-pre
+       $(MAKE) distdir='$(package)' dist-recursive
        tar cvzf $(package).tar.gz $(package)
 
-dist-local: dist-default
-
-dist-tarball: dist-pre dist-recursive dist-post
-
 dist: dist-tarball
        rm -rf $(package)
 
@@ -80,11 +123,10 @@ dist: dist-tarball
 # We need to set prefix on make so class/System/Makefile can find
 # the installed System.Xml to build properly
 
-distcheck:
+distcheck: dist-tarball
        rm -rf InstallTest Distcheck-MCS ; \
        mkdir InstallTest ; \
        destdir=`cd InstallTest && pwd` ; \
-       $(MAKE) dist-tarball || exit 1 ; \
        mv $(package) Distcheck-MCS ; \
        (cd Distcheck-MCS && \
            $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \