In .:
[mono.git] / mcs / Makefile
index fe4c5f7ceab2457918f23a072aa1b529e8ab3ac7..2df7ab91667e99fa35b425957104f917a90c97e6 100644 (file)
@@ -1,34 +1,76 @@
 thisdir := .
-SUBDIRS := build jay mcs class mbas nunit20 monoresgen ilasm tools tests errors docs
-include build/rules.make
 
-all-local: platform-check
+SUBDIRS := build jay mcs monoresgen 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
+net_2_0_bootstrap_SUBDIRS := class
+net_2_0_SUBDIRS := jay gmcs class tests errors tools
+
+ifdef TEST_SUBDIRS
+$(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
+endif
+
+OVERRIDE_TARGET_ALL = yes
 
-install-local: platform-check
+include build/rules.make
 
-test-local: platform-check
+all-recursive $(STD_TARGETS:=-recursive): platform-check profile-check
 
-clean-local:
+# Used when OVERRIDE_TARGET_ALL is defined
+all.override:
+ifndef NO_SIGN_ASSEMBLY
+       $(MAKE) NO_SIGN_ASSEMBLY=yes all.real
+endif
+       $(MAKE) all.real
 
-dist-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 --, ,$*)
+
+profiles-do--run-test:
+       ret=:; \
+       $(MAKE) PROFILE=default run-test || ret=false; \
+       $(MAKE) PROFILE=net_2_0 run-test && $$ret
+
+# Orchestrate the bootstrap here.
+profiles-do--all: profile-do--net_2_0--all
+
+profile-do--net_2_0--all: profile-do--net_2_0_bootstrap--all
+profile-do--net_2_0_bootstrap--all: profile-do--default--all
+
+ifeq (linux, $(PLATFORM))
+profile-do--default--all: profile-do--net_1_1_bootstrap--all
+profile-do--net_1_1_bootstrap--all: profile-do--basic--all
+endif
+
 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 +86,37 @@ DISTFILES = \
        MIT.X11                 \
        MonoIcon.png            \
        README                  \
-       README.building         \
        ScalableMonoIcon.svg    \
        winexe.in
 
+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 ; \