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