Remove obsolete profiles and profile checks from the build system.
[mono.git] / mcs / Makefile
1 thisdir := .
2
3 SUBDIRS := build jay mcs class nunit24 ilasm tools tests errors docs
4
5 # Resgen is corlib specific tool
6
7 basic_SUBDIRS := build jay mcs class
8 build_SUBDIRS := build class mcs class/aot-compiler tools
9 monodroid_SUBDIRS := build class
10 monotouch_SUBDIRS := build class
11 monotouch_runtime_SUBDIRS := build class
12 xammac_SUBDIRS := build class
13 mobile_SUBDIRS := build class
14 mobile_static_SUBDIRS := build class
15 net_4_0_SUBDIRS := build class
16 net_4_5_SUBDIRS := build mcs class nunit24 ilasm tools tests errors docs
17 xbuild_12_SUBDIRS := build class tools/xbuild
18 xbuild_14_SUBDIRS := build class tools/xbuild
19
20 # List of test subdirs that should pass 100%
21 centum_tests := \
22         class/corlib                                            \
23         class/System                                            \
24         class/System.XML                                        \
25         class/Commons.Xml.Relaxng                               \
26         class/Cscompmgd                                         \
27         class/Mono.Posix                                        \
28         class/Mono.Security                                     \
29         class/System.Design                                     \
30         class/System.DirectoryServices          \
31         class/System.Drawing                            \
32         class/System.Runtime.Remoting                           \
33         class/System.Runtime.Serialization.Formatters.Soap      \
34         class/System.Security                                   \
35         class/System.ServiceProcess                             \
36         class/System.Web                                                \
37         class/System.Web.Services                               \
38         tests                                                   \
39         errors
40
41 default_centum_tests := \
42         $(centum_tests)         \
43         class/System.Data
44
45 ifdef ONLY_CENTUM_TESTS
46 TEST_SUBDIRS := $($(PROFILE)_centum_tests)
47 endif
48
49 ifdef TEST_SUBDIRS
50 $(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
51 endif
52
53 include build/rules.make
54
55 all-recursive $(STD_TARGETS:=-recursive): dir-check platform-check profile-check
56
57 .PHONY: all-local $(STD_TARGETS:=-local)
58 all-local $(STD_TARGETS:=-local):
59         @:
60
61 dir-check:
62         @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then $(MAKE) -C ../runtime; fi
63
64 # fun specialty targets
65
66 PROFILES = net_4_5 net_4_0 xbuild_12 xbuild_14
67
68 .PHONY: all-profiles $(STD_TARGETS:=-profiles)
69 all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
70         @:
71
72 profiles-do--%:
73         $(MAKE) $(PROFILES:%=profile-do--%--$*)
74
75 # The % below looks like profile-name--target-name
76 profile-do--%:
77         $(MAKE) PROFILE=$(subst --, ,$*)
78
79 # We don't want to run the tests in parallel.  We want behaviour like -k.
80 profiles-do--run-test:
81         ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
82
83 # Orchestrate the bootstrap here.
84 _boot_ = all clean install
85 $(_boot_:%=profile-do--xbuild_14--%):         profile-do--xbuild_14--%:         profile-do--net_4_5--%
86 $(_boot_:%=profile-do--xbuild_12--%):         profile-do--xbuild_12--%:         profile-do--net_4_5--%
87 $(_boot_:%=profile-do--net_4_0--%):           profile-do--net_4_0--%:           profile-do--build--%
88 $(_boot_:%=profile-do--net_4_5--%):           profile-do--net_4_5--%:           profile-do--build--%
89 $(_boot_:%=profile-do--monodroid--%):         profile-do--monodroid--%:         profile-do--build--%
90 $(_boot_:%=profile-do--monotouch--%):         profile-do--monotouch--%:         profile-do--build--%
91 $(_boot_:%=profile-do--monotouch_runtime--%):  profile-do--monotouch_runtime--%:  profile-do--build--%
92 $(_boot_:%=profile-do--xammac--%):            profile-do--xammac--%:            profile-do--build--%
93 $(_boot_:%=profile-do--mobile--%):            profile-do--mobile--%:         profile-do--build--%
94 $(_boot_:%=profile-do--mobile_static--%):     profile-do--mobile_static--%:     profile-do--build--%
95 $(_boot_:%=profile-do--build--%):             profile-do--build--%:             profile-do--basic--%
96
97 testcorlib:
98         @cd class/corlib && $(MAKE) test run-test
99
100 compiler-tests:
101         $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
102
103 package := mcs-$(VERSION)
104
105 DISTFILES = \
106         AUTHORS                 \
107         ChangeLog               \
108         COPYING                 \
109         COPYING.LIB             \
110         INSTALL.txt             \
111         LICENSE                 \
112         LICENSE.GPL             \
113         LICENSE.LGPL            \
114         LICENSE.MPL             \
115         Makefile                \
116         mkinstalldirs           \
117         MIT.X11                 \
118         MonoIcon.png            \
119         README                  \
120         ScalableMonoIcon.svg    \
121         winexe.in
122
123 dist-local: dist-default
124
125 csproj-local:
126
127 dist-pre:
128         rm -rf $(package)
129         mkdir $(package)
130
131 dist-tarball: dist-pre
132         $(MAKE) distdir='$(package)' dist-recursive
133         tar cvjf $(package).tar.bz2 $(package)
134
135 dist: dist-tarball
136         rm -rf $(package)
137
138 # the egrep -v is kind of a hack (to get rid of the makefrags)
139 # but otherwise we have to make dist then make clean which
140 # is sort of not kosher. And it breaks with DIST_ONLY_SUBDIRS.
141 #
142 # We need to set prefix on make so class/System/Makefile can find
143 # the installed System.Xml to build properly
144
145 distcheck: dist-tarball
146         rm -rf InstallTest Distcheck-MCS ; \
147         mkdir InstallTest ; \
148         destdir=`cd InstallTest && pwd` ; \
149         mv $(package) Distcheck-MCS ; \
150         (cd Distcheck-MCS && \
151             $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \
152             $(MAKE) clean && $(MAKE) dist || exit 1) || exit 1 ; \
153         mv Distcheck-MCS $(package) ; \
154         tar tjf $(package)/$(package).tar.bz2 |sed -e 's,/$$,,' |sort >distdist.list ; \
155         rm $(package)/$(package).tar.bz2 ; \
156         tar tjf $(package).tar.bz2 |sed -e 's,/$$,,' |sort >before.list ; \
157         find $(package) |egrep -v '(makefrag|response)' |sed -e 's,/$$,,' |sort >after.list ; \
158         cmp before.list after.list || exit 1 ; \
159         cmp before.list distdist.list || exit 1 ; \
160         rm -f before.list after.list distdist.list ; \
161         rm -rf $(package) InstallTest
162
163 monocharge:
164         chargedir=monocharge-`date -u +%Y%m%d` ; \
165         mkdir "$$chargedir" ; \
166         DESTDIR=`cd "$$chargedir" && pwd` ; \
167         $(MAKE) install DESTDIR="$$DESTDIR" || exit 1 ; \
168         tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
169         rm -rf "$$chargedir"
170
171 # A bare-bones monocharge.
172
173 monocharge-lite:
174         chargedir=monocharge-lite-`date -u +%Y%m%d` ; \
175         mkdir "$$chargedir" ; \
176         DESTDIR=`cd "$$chargedir" && pwd` ; \
177         $(MAKE) -C mcs install DESTDIR="$$DESTDIR" || exit 1; \
178         $(MAKE) -C class/corlib install DESTDIR="$$DESTDIR" || exit 1; \
179         $(MAKE) -C class/System install DESTDIR="$$DESTDIR" || exit 1; \
180         $(MAKE) -C class/System.XML install DESTDIR="$$DESTDIR" || exit 1; \
181         $(MAKE) -C class/Mono.CSharp.Debugger install DESTDIR="$$DESTDIR" || exit 1; \
182         tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
183         rm -rf "$$chargedir"