2006-03-16 Martin Baulig <martin@ximian.com>
[mono.git] / mcs / Makefile
index fe4c5f7ceab2457918f23a072aa1b529e8ab3ac7..99ce95ef399438ee6d0c55992a554c3c50c2edc3 100644 (file)
@@ -1,34 +1,91 @@
 thisdir := .
-SUBDIRS := build jay mcs class mbas nunit20 monoresgen ilasm tools tests errors docs
+
+SUBDIRS := build jay mcs tools/resgen class mbas nunit20 ilasm tools tests errors docs
+DIST_ONLY_SUBDIRS := gmcs
+
+basic_SUBDIRS := build jay mcs class
+net_1_1_bootstrap_SUBDIRS := build jay mcs class ilasm tools
+net_2_0_bootstrap_SUBDIRS := build class ilasm
+net_2_0_SUBDIRS := build jay gmcs class nunit20 ilasm tests errors tools
+
+# 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)
+endif
+
 include build/rules.make
 
-all-local: platform-check
+all-recursive $(STD_TARGETS:=-recursive): platform-check profile-check
 
-install-local: platform-check
+.PHONY: all-local $(STD_TARGETS:=-local)
+all-local $(STD_TARGETS:=-local):
+       @:
 
-test-local: platform-check
+# fun specialty targets
 
-clean-local:
+PROFILES = default net_2_0
 
-dist-local:
+.PHONY: all-profiles $(STD_TARGETS:=-profiles)
+all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
+       @:
 
-# fun specialty targets
+profiles-do--%:
+       $(MAKE) $(PROFILES:%=profile-do--%--$*)
+
+# The % below looks like profile-name--target-name
+profile-do--%:
+       $(MAKE) PROFILE=$(subst --, ,$*)
+
+# 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
+
+# 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--%
+$(_boot_:%=profile-do--net_1_1_bootstrap--%): profile-do--net_1_1_bootstrap--%: profile-do--basic--%
 
 testcorlib:
        @cd class/corlib && $(MAKE) test run-test
 
-bootstrap:
-       $(MAKE) all MCS='$$(INTERNAL_MCS)'
-
-unbootstrap:
-       $(MAKE) all MCS='$$(BOOTSTRAP_MCS)'
+compiler-tests:
+       $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
 
-# Disting. We need to override $(distdir) here.
+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                 \
@@ -44,34 +101,38 @@ DISTFILES = \
        MIT.X11                 \
        MonoIcon.png            \
        README                  \
-       README.building         \
        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-tarball: dist-pre dist-default dist-recursive dist-post
-
 dist: dist-tarball
        rm -rf $(package)
 
 # the egrep -v is kind of a hack (to get rid of the makefrags)
 # but otherwise we have to make dist then make clean which
 # is sort of not kosher. And it breaks with DIST_ONLY_SUBDIRS.
+#
+# 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 && make test && make install DESTDIR="$$destdir" && \
-           make clean && make dist || exit 1) || exit 1 ; \
+           $(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 ; \