Avoid calling TripleDES.Create(string), which calls CryptoConfig, when possible ...
[mono-project.git] / mcs / Makefile
blobdf6b9a117d554b273b757a41e28ae10ae97dfc37
1 thisdir := .
3 SUBDIRS := build jay mcs class nunit24 ilasm tools tests errors docs
5 # Resgen is corlib specific tool
7 basic_SUBDIRS := build jay mcs class
8 build_SUBDIRS := build class mcs class/aot-compiler tools
9 net_2_0_SUBDIRS := build class nunit24 ilasm tools tests errors docs
10 monodroid_SUBDIRS := build class
11 monotouch_SUBDIRS := build class
12 monotouch_runtime_SUBDIRS := build class
13 mobile_SUBDIRS := build class
14 net_3_5_SUBDIRS := build class tools/xbuild
15 net_4_0_SUBDIRS := build class
16 net_4_5_SUBDIRS := build mcs class nunit24 ilasm tools tests errors docs
18 # List of test subdirs that should pass 100%
19 centum_tests := \
20 class/corlib \
21 class/System \
22 class/System.XML \
23 class/Commons.Xml.Relaxng \
24 class/Cscompmgd \
25 class/Microsoft.JScript \
26 class/Mono.Posix \
27 class/Mono.Security \
28 class/System.Design \
29 class/System.DirectoryServices \
30 class/System.Drawing \
31 class/System.Runtime.Remoting \
32 class/System.Runtime.Serialization.Formatters.Soap \
33 class/System.Security \
34 class/System.ServiceProcess \
35 class/System.Web \
36 class/System.Web.Services \
37 tests \
38 errors
40 default_centum_tests := \
41 $(centum_tests) \
42 class/System.Data
44 net_2_0_centum_tests := \
45 $(centum_tests) \
46 class/System.Core \
47 class/System.Configuration \
48 class/System.Data.DataSetExtensions \
49 class/System.Xml.Linq \
50 class/System.Transactions \
51 class/Microsoft.Build.Framework \
52 class/Microsoft.Build.Utilities \
53 class/Microsoft.Build.Engine \
54 class/System.Runtime.Serialization \
55 class/System.IdentityModel \
56 class/System.ServiceModel \
57 class/System.ServiceModel.Web \
58 class/Mono.C5
60 # class/System.Web.Extensions
61 # class/Microsoft.Build.Tasks
63 # note that System.Xml.Linq is here to prevent this from being empty
64 net_3_5_centum_tests := \
65 class/System.Xml.Linq
67 ifdef ONLY_CENTUM_TESTS
68 TEST_SUBDIRS := $($(PROFILE)_centum_tests)
69 endif
71 ifdef TEST_SUBDIRS
72 $(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
73 endif
75 include build/rules.make
77 all-recursive $(STD_TARGETS:=-recursive): dir-check platform-check profile-check
79 .PHONY: all-local $(STD_TARGETS:=-local)
80 all-local $(STD_TARGETS:=-local):
83 dir-check:
84 @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then make -C ../runtime; fi
86 # fun specialty targets
88 PROFILES = net_2_0 net_3_5 net_4_0 net_4_5
90 .PHONY: all-profiles $(STD_TARGETS:=-profiles)
91 all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
94 profiles-do--%:
95 $(MAKE) $(PROFILES:%=profile-do--%--$*)
97 # The % below looks like profile-name--target-name
98 profile-do--%:
99 $(MAKE) PROFILE=$(subst --, ,$*)
101 # We don't want to run the tests in parallel. We want behaviour like -k.
102 profiles-do--run-test:
103 ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
105 # Orchestrate the bootstrap here.
106 _boot_ = all clean install
107 $(_boot_:%=profile-do--net_4_5--%): profile-do--net_4_5--%: profile-do--build--%
108 $(_boot_:%=profile-do--net_4_0--%): profile-do--net_4_0--%: profile-do--build--%
109 $(_boot_:%=profile-do--net_3_5--%): profile-do--net_3_5--%: profile-do--net_2_0--%
110 $(_boot_:%=profile-do--monodroid--%): profile-do--monodroid--%: profile-do--build--%
111 $(_boot_:%=profile-do--monotouch--%): profile-do--monotouch--%: profile-do--build--%
112 $(_boot_:%=profile-do--monotouch_runtime--%): profile-do--monotouch_runtime--%: profile-do--build--%
113 $(_boot_:%=profile-do--mobile--%): profile-do--mobile--%: profile-do--build--%
114 $(_boot_:%=profile-do--net_2_0--%): profile-do--net_2_0--%: profile-do--build--%
115 $(_boot_:%=profile-do--build--%): profile-do--build--%: profile-do--basic--%
117 testcorlib:
118 @cd class/corlib && $(MAKE) test run-test
120 compiler-tests:
121 $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
123 package := mcs-$(VERSION)
125 DISTFILES = \
126 AUTHORS \
127 ChangeLog \
128 COPYING \
129 COPYING.LIB \
130 INSTALL.txt \
131 LICENSE \
132 LICENSE.GPL \
133 LICENSE.LGPL \
134 LICENSE.MPL \
135 Makefile \
136 mkinstalldirs \
137 MIT.X11 \
138 MonoIcon.png \
139 README \
140 ScalableMonoIcon.svg \
141 winexe.in
143 dist-local: dist-default
145 csproj-local:
147 dist-pre:
148 rm -rf $(package)
149 mkdir $(package)
151 dist-tarball: dist-pre
152 $(MAKE) distdir='$(package)' dist-recursive
153 tar cvjf $(package).tar.bz2 $(package)
155 dist: dist-tarball
156 rm -rf $(package)
158 # the egrep -v is kind of a hack (to get rid of the makefrags)
159 # but otherwise we have to make dist then make clean which
160 # is sort of not kosher. And it breaks with DIST_ONLY_SUBDIRS.
162 # We need to set prefix on make so class/System/Makefile can find
163 # the installed System.Xml to build properly
165 distcheck: dist-tarball
166 rm -rf InstallTest Distcheck-MCS ; \
167 mkdir InstallTest ; \
168 destdir=`cd InstallTest && pwd` ; \
169 mv $(package) Distcheck-MCS ; \
170 (cd Distcheck-MCS && \
171 $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \
172 $(MAKE) clean && $(MAKE) dist || exit 1) || exit 1 ; \
173 mv Distcheck-MCS $(package) ; \
174 tar tjf $(package)/$(package).tar.bz2 |sed -e 's,/$$,,' |sort >distdist.list ; \
175 rm $(package)/$(package).tar.bz2 ; \
176 tar tjf $(package).tar.bz2 |sed -e 's,/$$,,' |sort >before.list ; \
177 find $(package) |egrep -v '(makefrag|response)' |sed -e 's,/$$,,' |sort >after.list ; \
178 cmp before.list after.list || exit 1 ; \
179 cmp before.list distdist.list || exit 1 ; \
180 rm -f before.list after.list distdist.list ; \
181 rm -rf $(package) InstallTest
183 monocharge:
184 chargedir=monocharge-`date -u +%Y%m%d` ; \
185 mkdir "$$chargedir" ; \
186 DESTDIR=`cd "$$chargedir" && pwd` ; \
187 $(MAKE) install DESTDIR="$$DESTDIR" || exit 1 ; \
188 tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
189 rm -rf "$$chargedir"
191 # A bare-bones monocharge.
193 monocharge-lite:
194 chargedir=monocharge-lite-`date -u +%Y%m%d` ; \
195 mkdir "$$chargedir" ; \
196 DESTDIR=`cd "$$chargedir" && pwd` ; \
197 $(MAKE) -C mcs install DESTDIR="$$DESTDIR" || exit 1; \
198 $(MAKE) -C class/corlib install DESTDIR="$$DESTDIR" || exit 1; \
199 $(MAKE) -C class/System install DESTDIR="$$DESTDIR" || exit 1; \
200 $(MAKE) -C class/System.XML install DESTDIR="$$DESTDIR" || exit 1; \
201 $(MAKE) -C class/Mono.CSharp.Debugger install DESTDIR="$$DESTDIR" || exit 1; \
202 tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
203 rm -rf "$$chargedir"