[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / Makefile
blobcba9589ad08d552fdca27fd2849943b596a1738c
1 thisdir := .
3 SUBDIRS := build jay mcs class nunit24 ilasm tools tests errors docs packages
5 # Resgen is corlib specific tool
7 basic_SUBDIRS := build jay class
8 build_SUBDIRS := build class 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 testing_aot_hybrid_SUBDIRS := build class
18 testing_aot_full_SUBDIRS := build class
19 binary_reference_assemblies_SUBDIRS := build class
20 net_4_x_SUBDIRS := build class nunit24 ilasm tools tests errors docs mcs class/aot-compiler packages
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 xbox_SUBDIRS := build class
26 include build/rules.make
28 all-recursive $(STD_TARGETS:=-recursive): dir-check platform-check profile-check
30 .PHONY: all-local $(STD_TARGETS:=-local)
31 all-local $(STD_TARGETS:=-local):
34 dir-check:
35 @if [ "$(NO_DIR_CHECK)" = "" -a "$(PROFILE)" != "basic" ]; then $(MAKE) -C ../runtime; fi
37 # fun specialty targets
39 PROFILES = net_4_x binary_reference_assemblies xbuild_12 xbuild_14
41 .PHONY: all-profiles $(STD_TARGETS:=-profiles)
42 all-profiles $(STD_TARGETS:=-profiles): %-profiles: profiles-do--%
45 profiles-do--%:
46 $(MAKE) $(PROFILES:%=profile-do--%--$*)
48 # The % below looks like profile-name--target-name
49 profile-do--%:
50 $(MAKE) PROFILE=$(subst --, ,$*)
52 # xbuild_12 and xbuild_14 will try to install the same files, so they need
53 # to be ordered
54 profile-do--xbuild_14--install: profile-do--xbuild_12--install
56 # We don't want to run the tests in parallel. We want behaviour like -k.
57 profiles-do--run-test:
58 ret=:; $(foreach p,$(PROFILES), { $(MAKE) PROFILE=$(p) run-test || ret=false; }; ) $$ret
60 # Orchestrate the bootstrap here.
61 _boot_ = all clean install
62 $(_boot_:%=profile-do--xbuild_14--%): profile-do--xbuild_14--%: profile-do--net_4_x--%
63 $(_boot_:%=profile-do--xbuild_12--%): profile-do--xbuild_12--%: profile-do--net_4_x--%
64 $(_boot_:%=profile-do--binary_reference_assemblies--%): profile-do--binary_reference_assemblies--%: profile-do--build--%
65 $(_boot_:%=profile-do--net_4_x--%): profile-do--net_4_x--%: profile-do--build--%
66 $(_boot_:%=profile-do--monodroid--%): profile-do--monodroid--%: profile-do--build--%
67 $(_boot_:%=profile-do--monotouch--%): profile-do--monotouch--%: profile-do--build--%
68 $(_boot_:%=profile-do--monotouch_watch--%): profile-do--monotouch_watch--%: profile-do--build--%
69 $(_boot_:%=profile-do--monotouch_tv--%): profile-do--monotouch_tv--%: profile-do--build--%
70 $(_boot_:%=profile-do--monotouch_runtime--%): profile-do--monotouch_runtime--%: profile-do--build--%
71 $(_boot_:%=profile-do--monotouch_watch_runtime--%): profile-do--monotouch_watch_runtime--%: profile-do--build--%
72 $(_boot_:%=profile-do--monotouch_tv_runtime--%): profile-do--monotouch_tv_runtime--%: profile-do--build--%
73 $(_boot_:%=profile-do--xammac--%): profile-do--xammac--%: profile-do--build--%
74 $(_boot_:%=profile-do--xammac_net_4_5--%): profile-do--xammac_net_4_5--%: profile-do--build--%
75 $(_boot_:%=profile-do--testing_aot_hybrid--%): profile-do--testing_aot_hybrid--%: profile-do--build--%
76 $(_boot_:%=profile-do--testing_aot_full--%): profile-do--testing_aot_full--%: profile-do--build--%
77 $(_boot_:%=profile-do--xbox--%): profile-do--xbox--%: profile-do--build--%
78 $(_boot_:%=profile-do--build--%): profile-do--build--%: profile-do--basic--%
80 testcorlib:
81 @cd class/corlib && $(MAKE) test run-test
83 compiler-tests:
84 $(MAKE) TEST_SUBDIRS="tests errors" run-test-profiles
86 package := mcs-$(VERSION)
88 DISTFILES = \
89 AUTHORS \
90 COPYING \
91 INSTALL.txt \
92 Makefile \
93 mkinstalldirs \
94 MonoIcon.png \
95 README \
96 ScalableMonoIcon.svg \
97 winexe.in
99 dist-local: dist-default
101 csproj-local:
103 dist-pre:
104 rm -rf $(package)
105 mkdir $(package)
107 dist-tarball: dist-pre
108 $(MAKE) distdir='$(package)' dist-recursive
109 tar cvjf $(package).tar.bz2 $(package)
111 dist: dist-tarball
112 rm -rf $(package)
114 # the egrep -v is kind of a hack (to get rid of the makefrags)
115 # but otherwise we have to make dist then make clean which
116 # is sort of not kosher. And it breaks with DIST_ONLY_SUBDIRS.
118 # We need to set prefix on make so class/System/Makefile can find
119 # the installed System.Xml to build properly
121 distcheck: dist-tarball
122 rm -rf InstallTest Distcheck-MCS ; \
123 mkdir InstallTest ; \
124 destdir=`cd InstallTest && pwd` ; \
125 mv $(package) Distcheck-MCS ; \
126 (cd Distcheck-MCS && \
127 $(MAKE) prefix=$(prefix) && $(MAKE) test && $(MAKE) install DESTDIR="$$destdir" && \
128 $(MAKE) clean && $(MAKE) dist || exit 1) || exit 1 ; \
129 mv Distcheck-MCS $(package) ; \
130 tar tjf $(package)/$(package).tar.bz2 |sed -e 's,/$$,,' |sort >distdist.list ; \
131 rm $(package)/$(package).tar.bz2 ; \
132 tar tjf $(package).tar.bz2 |sed -e 's,/$$,,' |sort >before.list ; \
133 find $(package) |egrep -v '(makefrag|response)' |sed -e 's,/$$,,' |sort >after.list ; \
134 cmp before.list after.list || exit 1 ; \
135 cmp before.list distdist.list || exit 1 ; \
136 rm -f before.list after.list distdist.list ; \
137 rm -rf $(package) InstallTest
139 monocharge:
140 chargedir=monocharge-`date -u +%Y%m%d` ; \
141 mkdir "$$chargedir" ; \
142 DESTDIR=`cd "$$chargedir" && pwd` ; \
143 $(MAKE) install DESTDIR="$$DESTDIR" || exit 1 ; \
144 tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
145 rm -rf "$$chargedir"
147 # A bare-bones monocharge.
149 monocharge-lite:
150 chargedir=monocharge-lite-`date -u +%Y%m%d` ; \
151 mkdir "$$chargedir" ; \
152 DESTDIR=`cd "$$chargedir" && pwd` ; \
153 $(MAKE) -C mcs install DESTDIR="$$DESTDIR" || exit 1; \
154 $(MAKE) -C class/corlib install DESTDIR="$$DESTDIR" || exit 1; \
155 $(MAKE) -C class/System install DESTDIR="$$DESTDIR" || exit 1; \
156 $(MAKE) -C class/System.XML install DESTDIR="$$DESTDIR" || exit 1; \
157 $(MAKE) -C class/Mono.CSharp.Debugger install DESTDIR="$$DESTDIR" || exit 1; \
158 tar cvjf "$$chargedir".tar.bz2 "$$chargedir" ; \
159 rm -rf "$$chargedir"