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