update known-issues
[mono.git] / mcs / Makefile
index 97ac73629cb8e07b2f989a6fb306594659198b1c..7325bf422064e2d24817ce88ce85ab4a4d21d533 100644 (file)
@@ -1,12 +1,42 @@
 thisdir := .
 
-SUBDIRS := build jay mcs class mbas nunit20 ilasm tools tests errors docs
+SUBDIRS := build jay mcs class 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
+basic_SUBDIRS := build jay mcs class
+net_1_1_bootstrap_SUBDIRS := build jay mcs class ilasm tools
+net_2_0_bootstrap_SUBDIRS := build jay mcs class ilasm tools
+net_2_0_SUBDIRS := build jay gmcs class nunit20 ilasm tools tests errors
+net_2_1_SUBDIRS := build jay gmcs class
+
+# List of test subdirs that should pass 100%
+centum_tests := \
+       class/corlib \
+       class/System \
+       class/Commons.Xml.Relaxng \
+       class/Cscompmgd \
+       class/Microsoft.JScript \
+       class/Mono.Posix \
+       class/Mono.Security \
+       class/System.Messaging \
+       class/System.Runtime.Remoting \
+       class/System.Runtime.Serialization.Formatters.Soap \
+       class/System.Security \
+       class/System.ServiceProcess \
+       class/System.Web.Services \
+       tests \
+       errors
+
+default_centum_tests :=                \
+       $(centum_tests)         \
+       class/System.XML        \
+       class/System.Data
+
+net_2_0_centum_tests := $(centum_tests) #class/Mono.C5
+
+ifdef ONLY_CENTUM_TESTS
+TEST_SUBDIRS := $($(PROFILE)_centum_tests)
+endif
 
 ifdef TEST_SUBDIRS
 $(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
@@ -40,12 +70,11 @@ profiles-do--run-test:
        ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
 
 # Orchestrate the bootstrap here.
-profile-do--net_2_0--all: profile-do--net_2_0_bootstrap--all
-profile-do--net_2_0_bootstrap--all: profile-do--default--all
-profile-do--default--all: profile-do--net_1_1_bootstrap--all
-ifeq (linux, $(PLATFORM))
-profile-do--net_1_1_bootstrap--all: profile-do--basic--all
-endif
+_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--%
+$(_boot_:%=profile-do--net_1_1_bootstrap--%): profile-do--net_1_1_bootstrap--%: profile-do--basic--%
 
 testcorlib:
        @cd class/corlib && $(MAKE) test run-test
@@ -68,6 +97,7 @@ DISTFILES = \
        LICENSE                 \
        LICENSE.GPL             \
        LICENSE.LGPL            \
+       LICENSE.MPL             \
        Makefile                \
        mkinstalldirs           \
        MIT.X11                 \
@@ -85,7 +115,7 @@ dist-pre:
 
 dist-tarball: dist-pre
        $(MAKE) distdir='$(package)' dist-recursive
-       tar cvzf $(package).tar.gz $(package)
+       tar cvjf $(package).tar.bz2 $(package)
 
 dist: dist-tarball
        rm -rf $(package)
@@ -106,9 +136,9 @@ distcheck: dist-tarball
            $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \
            $(MAKE) clean && $(MAKE) dist || exit 1) || exit 1 ; \
        mv Distcheck-MCS $(package) ; \
-       tar tzf $(package)/$(package).tar.gz |sed -e 's,/$$,,' |sort >distdist.list ; \
-       rm $(package)/$(package).tar.gz ; \
-       tar tzf $(package).tar.gz |sed -e 's,/$$,,' |sort >before.list ; \
+       tar tjf $(package)/$(package).tar.bz2 |sed -e 's,/$$,,' |sort >distdist.list ; \
+       rm $(package)/$(package).tar.bz2 ; \
+       tar tjf $(package).tar.bz2 |sed -e 's,/$$,,' |sort >before.list ; \
        find $(package) |egrep -v '(makefrag|response)' |sed -e 's,/$$,,' |sort >after.list ; \
        cmp before.list after.list || exit 1 ; \
        cmp before.list distdist.list || exit 1 ; \
@@ -120,7 +150,7 @@ monocharge:
        mkdir "$$chargedir" ; \
        DESTDIR=`cd "$$chargedir" && pwd` ; \
        $(MAKE) install DESTDIR="$$DESTDIR" || exit 1 ; \
-       tar cvzf "$$chargedir".tgz "$$chargedir" ; \
+       tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
        rm -rf "$$chargedir"
 
 # A bare-bones monocharge.
@@ -134,5 +164,5 @@ monocharge-lite:
        $(MAKE) -C class/System install DESTDIR="$$DESTDIR" || exit 1; \
        $(MAKE) -C class/System.XML install DESTDIR="$$DESTDIR" || exit 1; \
        $(MAKE) -C class/Mono.CSharp.Debugger install DESTDIR="$$DESTDIR" || exit 1; \
-       tar cvzf "$$chargedir".tgz "$$chargedir" ; \
+       tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
        rm -rf "$$chargedir"