SqlBulkCopy Implementation
[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 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
17
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
39
40 default_centum_tests := \
41         $(centum_tests)         \
42         class/System.Data
43
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
59
60 #       class/System.Web.Extensions
61 #       class/Microsoft.Build.Tasks     
62
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
66
67 ifdef ONLY_CENTUM_TESTS
68 TEST_SUBDIRS := $($(PROFILE)_centum_tests)
69 endif
70
71 ifdef TEST_SUBDIRS
72 $(PROFILE)_SUBDIRS := $(TEST_SUBDIRS)
73 endif
74
75 include build/rules.make
76
77 all-recursive $(STD_TARGETS:=-recursive): dir-check platform-check profile-check
78
79 .PHONY: all-local $(STD_TARGETS:=-local)
80 all-local $(STD_TARGETS:=-local):
81         @:
82
83 dir-check:
84         @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then make -C ../runtime; fi
85
86 # fun specialty targets
87
88 PROFILES = net_2_0 net_3_5 net_4_0 net_4_5
89
90 .PHONY: all-profiles $(STD_TARGETS:=-profiles)
91 all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
92         @:
93
94 profiles-do--%:
95         $(MAKE) $(PROFILES:%=profile-do--%--$*)
96
97 # The % below looks like profile-name--target-name
98 profile-do--%:
99         $(MAKE) PROFILE=$(subst --, ,$*)
100
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
104
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--%
116
117 testcorlib:
118         @cd class/corlib && $(MAKE) test run-test
119
120 compiler-tests:
121         $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
122
123 package := mcs-$(VERSION)
124
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
142
143 dist-local: dist-default
144
145 csproj-local:
146
147 dist-pre:
148         rm -rf $(package)
149         mkdir $(package)
150
151 dist-tarball: dist-pre
152         $(MAKE) distdir='$(package)' dist-recursive
153         tar cvjf $(package).tar.bz2 $(package)
154
155 dist: dist-tarball
156         rm -rf $(package)
157
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.
161 #
162 # We need to set prefix on make so class/System/Makefile can find
163 # the installed System.Xml to build properly
164
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
182
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"
190
191 # A bare-bones monocharge.
192
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"