Merge pull request #1661 from HellBrick/connection-group-deadlock
[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 binary_reference_assemblies_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 include build/rules.make
21
22 all-recursive $(STD_TARGETS:=-recursive): dir-check platform-check profile-check
23
24 .PHONY: all-local $(STD_TARGETS:=-local)
25 all-local $(STD_TARGETS:=-local):
26         @:
27
28 dir-check:
29         @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then $(MAKE) -C ../runtime; fi
30
31 # fun specialty targets
32
33 PROFILES = net_4_5 binary_reference_assemblies xbuild_12 xbuild_14
34
35 .PHONY: all-profiles $(STD_TARGETS:=-profiles)
36 all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
37         @:
38
39 profiles-do--%:
40         $(MAKE) $(PROFILES:%=profile-do--%--$*)
41
42 # The % below looks like profile-name--target-name
43 profile-do--%:
44         $(MAKE) PROFILE=$(subst --, ,$*)
45
46 # We don't want to run the tests in parallel.  We want behaviour like -k.
47 profiles-do--run-test:
48         ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
49
50 # Orchestrate the bootstrap here.
51 _boot_ = all clean install
52 $(_boot_:%=profile-do--xbuild_14--%):         profile-do--xbuild_14--%:         profile-do--net_4_5--%
53 $(_boot_:%=profile-do--xbuild_12--%):         profile-do--xbuild_12--%:         profile-do--net_4_5--%
54 $(_boot_:%=profile-do--binary_reference_assemblies--%):           profile-do--binary_reference_assemblies--%:           profile-do--build--%
55 $(_boot_:%=profile-do--net_4_5--%):           profile-do--net_4_5--%:           profile-do--build--%
56 $(_boot_:%=profile-do--monodroid--%):         profile-do--monodroid--%:         profile-do--build--%
57 $(_boot_:%=profile-do--monotouch--%):         profile-do--monotouch--%:         profile-do--build--%
58 $(_boot_:%=profile-do--monotouch_runtime--%):  profile-do--monotouch_runtime--%:  profile-do--build--%
59 $(_boot_:%=profile-do--xammac--%):            profile-do--xammac--%:            profile-do--build--%
60 $(_boot_:%=profile-do--mobile--%):            profile-do--mobile--%:         profile-do--build--%
61 $(_boot_:%=profile-do--mobile_static--%):     profile-do--mobile_static--%:     profile-do--build--%
62 $(_boot_:%=profile-do--build--%):             profile-do--build--%:             profile-do--basic--%
63
64 testcorlib:
65         @cd class/corlib && $(MAKE) test run-test
66
67 compiler-tests:
68         $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
69
70 package := mcs-$(VERSION)
71
72 DISTFILES = \
73         AUTHORS                 \
74         ChangeLog               \
75         COPYING                 \
76         COPYING.LIB             \
77         INSTALL.txt             \
78         LICENSE                 \
79         LICENSE.GPL             \
80         LICENSE.LGPL            \
81         LICENSE.MPL             \
82         Makefile                \
83         mkinstalldirs           \
84         MIT.X11                 \
85         MonoIcon.png            \
86         README                  \
87         ScalableMonoIcon.svg    \
88         winexe.in
89
90 dist-local: dist-default
91
92 csproj-local:
93
94 dist-pre:
95         rm -rf $(package)
96         mkdir $(package)
97
98 dist-tarball: dist-pre
99         $(MAKE) distdir='$(package)' dist-recursive
100         tar cvjf $(package).tar.bz2 $(package)
101
102 dist: dist-tarball
103         rm -rf $(package)
104
105 # the egrep -v is kind of a hack (to get rid of the makefrags)
106 # but otherwise we have to make dist then make clean which
107 # is sort of not kosher. And it breaks with DIST_ONLY_SUBDIRS.
108 #
109 # We need to set prefix on make so class/System/Makefile can find
110 # the installed System.Xml to build properly
111
112 distcheck: dist-tarball
113         rm -rf InstallTest Distcheck-MCS ; \
114         mkdir InstallTest ; \
115         destdir=`cd InstallTest && pwd` ; \
116         mv $(package) Distcheck-MCS ; \
117         (cd Distcheck-MCS && \
118             $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \
119             $(MAKE) clean && $(MAKE) dist || exit 1) || exit 1 ; \
120         mv Distcheck-MCS $(package) ; \
121         tar tjf $(package)/$(package).tar.bz2 |sed -e 's,/$$,,' |sort >distdist.list ; \
122         rm $(package)/$(package).tar.bz2 ; \
123         tar tjf $(package).tar.bz2 |sed -e 's,/$$,,' |sort >before.list ; \
124         find $(package) |egrep -v '(makefrag|response)' |sed -e 's,/$$,,' |sort >after.list ; \
125         cmp before.list after.list || exit 1 ; \
126         cmp before.list distdist.list || exit 1 ; \
127         rm -f before.list after.list distdist.list ; \
128         rm -rf $(package) InstallTest
129
130 monocharge:
131         chargedir=monocharge-`date -u +%Y%m%d` ; \
132         mkdir "$$chargedir" ; \
133         DESTDIR=`cd "$$chargedir" && pwd` ; \
134         $(MAKE) install DESTDIR="$$DESTDIR" || exit 1 ; \
135         tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
136         rm -rf "$$chargedir"
137
138 # A bare-bones monocharge.
139
140 monocharge-lite:
141         chargedir=monocharge-lite-`date -u +%Y%m%d` ; \
142         mkdir "$$chargedir" ; \
143         DESTDIR=`cd "$$chargedir" && pwd` ; \
144         $(MAKE) -C mcs install DESTDIR="$$DESTDIR" || exit 1; \
145         $(MAKE) -C class/corlib install DESTDIR="$$DESTDIR" || exit 1; \
146         $(MAKE) -C class/System install DESTDIR="$$DESTDIR" || exit 1; \
147         $(MAKE) -C class/System.XML install DESTDIR="$$DESTDIR" || exit 1; \
148         $(MAKE) -C class/Mono.CSharp.Debugger install DESTDIR="$$DESTDIR" || exit 1; \
149         tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
150         rm -rf "$$chargedir"