2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / Makefile
index 678ac7ea95acda3d0af2a6c4e205c7731ee62af7..cedf9c3518cac861df38c47f6744d7aa0e180864 100644 (file)
@@ -1,31 +1,63 @@
 thisdir := .
-SUBDIRS := build jay mcs class mbas nunit20 monoresgen ilasm tools tests errors docs
-OVERRIDE_BARE_TARGETS = hells yeah
-include build/rules.make
 
-# Define these ourselves to that the platform checks come first
+SUBDIRS := build jay mcs tools/resgen class mbas nunit20 ilasm tools tests errors docs
+DIST_ONLY_SUBDIRS := gmcs
 
-all: platform-check profile-check all-recursive #all-local
+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
 
-install: platform-check profile-check install-recursive #install-local
+ifdef TEST_SUBDIRS
+$(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
+endif
 
-test: platform-check profile-check test-recursive #test-local
+include build/rules.make
 
-run-test: run-test-recursive #run-test-local
+all-recursive $(STD_TARGETS:=-recursive): platform-check profile-check
 
-clean: clean-recursive #clean-local
+.PHONY: all-local $(STD_TARGETS:=-local)
+all-local $(STD_TARGETS:=-local):
+       @:
 
 # fun specialty targets
 
+PROFILES = default net_2_0
+
+.PHONY: all-profiles $(STD_TARGETS:=-profiles)
+all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
+       @:
+
+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.
+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
+
 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                 \
@@ -41,20 +73,20 @@ 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-local: dist-default
-
-dist-tarball: dist-pre dist-recursive dist-post
-
 dist: dist-tarball
        rm -rf $(package)
 
@@ -65,15 +97,14 @@ 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" && \
-           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 ; \