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