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