Improve libgdiplus path handling
[mono.git] / runtime / Makefile.am
1 tmpinst = _tmpinst
2
3 noinst_SCRIPTS = mono-wrapper monodis-wrapper
4
5 etctmp = etc
6 symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config etc/mono/2.0/web.config etc/mono/browscap.ini etc/mono/2.0/Browsers/Compat.browser
7
8 if INSTALL_4_0
9 symlinks += etc/mono/4.0/machine.config etc/mono/4.0/web.config etc/mono/4.5/web.config etc/mono/4.5/machine.config etc/mono/4.0/Browsers/Compat.browser etc/mono/4.5/Browsers/Compat.browser
10 endif
11
12 etc/mono/2.0/machine.config: $(top_srcdir)/data/net_2_0/machine.config
13 etc/mono/2.0/web.config: $(top_srcdir)/data/net_2_0/web.config
14 etc/mono/browscap.ini: $(top_srcdir)/data/browscap.ini
15 etc/mono/2.0/Browsers/Compat.browser: $(top_srcdir)/data/Browsers/Compat.browser
16 etc/mono/4.0/Browsers/Compat.browser: $(top_srcdir)/data/Browsers/Compat.browser
17 etc/mono/4.5/Browsers/Compat.browser: $(top_srcdir)/data/Browsers/Compat.browser
18 etc/mono/4.0/machine.config: $(top_srcdir)/data/net_4_0/machine.config
19 etc/mono/4.0/web.config: $(top_srcdir)/data/net_4_0/web.config
20 etc/mono/4.5/machine.config: $(top_srcdir)/data/net_4_5/machine.config
21 etc/mono/4.5/web.config: $(top_srcdir)/data/net_4_5/web.config
22
23 $(symlinks):
24         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
25
26 SUPPORT_FILES = $(symlinks) mono-wrapper etc/mono/config
27
28 if ONLY_MONOTOUCH
29 build_profiles = monotouch
30 else
31 if ONLY_XAMMAC
32 build_profiles = xammac
33 else
34 build_profiles = 
35
36 if INSTALL_2_0
37 build_profiles += net_2_0 net_3_5
38 al_profile = net_2_0
39 endif
40
41 if INSTALL_4_0
42 build_profiles += net_4_0
43 al_profile = net_4_0
44 endif
45
46 if INSTALL_4_5
47 build_profiles += net_4_5 xbuild_12
48 al_profile = net_4_5
49 endif
50
51 if INSTALL_MONODROID
52 build_profiles += monodroid
53 endif
54
55 if INSTALL_MONOTOUCH
56 build_profiles += monotouch monotouch_runtime
57 endif
58
59 if INSTALL_XAMMAC
60 build_profiles += xammac
61 endif
62
63 test_profiles = $(build_profiles)
64
65 endif
66 endif
67
68 if BUILD_MCS
69
70 MAKE_FLAGS=$(if $(V),,--no-print-directory -s)
71
72 # The write check is to foil 'make distcheck'
73 all-local: $(SUPPORT_FILES) $(TEST_SUPPORT_FILES)
74         if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
75         cd $(mcs_topdir) && $(MAKE) $(MAKE_FLAGS) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' CC='$(CC)' all-profiles
76
77 # override automake
78 install: install-exec install-data
79
80 # override automake
81 install-exec: $(SUPPORT_FILES) $(TEST_SUPPORT_FILES)
82         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
83
84 # override automake
85 install-data:
86         @:
87
88 # override automake
89 uninstall:
90         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
91
92 ## mono --wapi=semdel will probably not delete the semaphore if someone is crazy enough to do a 'make -j distclean' :-)
93 clean-local:
94         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' clean-profiles
95         -./mono-wrapper --wapi=semdel
96         -rm -fr $(etctmp) $(tmpinst) .wapi
97
98 endif BUILD_MCS
99
100 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/ilasm $(tmpinst)/bin/mcs $(tmpinst)/bin/gmcs $(tmpinst)/bin/dmcs $(tmpinst)/bin/al2 $(tmpinst)/bin/al
101
102 # now a misnomer, but it'll go away soon enough.
103 if ENABLE_NUNIT_TESTS
104 test_select =
105 else
106 test_select = ONLY_CENTUM_TESTS=yes
107 endif
108
109 mcs-do-test-profiles:
110         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(test_profiles)' test-profiles
111
112 mcs-do-run-test-profiles: test-support-files
113         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(test_profiles)' run-test-profiles
114
115 if HOST_WIN32
116 if CROSS_COMPILING
117 cur_dir_cmd = pwd
118 PLATFORM_PATH_SEPARATOR = :
119 else
120 cur_dir_cmd = cygpath -w -a .
121 PLATFORM_PATH_SEPARATOR = ;
122 endif
123 else
124 cur_dir_cmd = pwd
125 PLATFORM_PATH_SEPARATOR = :
126 endif
127
128 # Compile all assemblies with the verifier turned on. Code must be valid but not verifiable.
129 # TODO it would be nice to split assemblies without unsafe code to use the verifier with verifiable mode.
130 # Skip net 4.0 assemblies because the contain metadata only
131 mcs-compileall: mono-wrapper etc/mono/config
132         save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
133         for profile in $(test_profiles); do \
134           if [ "net_4_0" = "$$profile" ]; then \
135           continue; \
136       fi; \
137           if [ "net_3_5" = "$$profile" ]; then \
138                   MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
139           elif [ "xbuild_12" = "$$profile" ]; then \
140                   MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_4_5$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
141           else \
142                   MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
143           fi; \
144           export MONO_PATH; \
145           for i in $(mcs_topdir)/class/lib/$$profile/*.{dll,exe}; do \
146                 if [ ! -f $$i ] ; then \
147                         continue ; \
148                 fi ;  \
149             if ./mono-wrapper --compile-all --verify-all --security=verifiable $$i; then \
150               echo $$i verified OK; \
151             else \
152               echo $$i verification failed; ok=false; \
153             fi; done; done; \
154         $$ok
155
156 if NACL_CODEGEN
157 check-local:
158 else
159 check-local: mcs-compileall mcs-do-test-profiles
160         $(MAKE) $(test_select) mcs-do-run-test-profiles
161 endif
162
163 # Compile all mcs tests
164 test: mcs-do-test-profiles
165
166 CLEANFILES = etc/mono/config
167
168 # depend on $(symlinks) to ensure 'etc/mono' directory exists
169 etc/mono/config: ../data/config Makefile $(symlinks)
170         d=`cd ../support && pwd`; \
171         sed 's,target="$(prefix)/lib/libMonoPosixHelper$(libsuffix)",target="'$$d'/libMonoPosixHelper.la",' ../data/config > $@t
172         if test -z "$(libgdiplus_loc)"; then :; else \
173           sed 's,target="$(libgdiplus_install_loc)",target="$(libgdiplus_loc)",' $@t > $@tt; \
174           mv -f $@tt $@t; fi
175         mv -f $@t $@
176
177 $(tmpinst)/bin/mono: mono-wrapper etc/mono/config
178         $(mkinstalldirs) $(tmpinst)/bin
179         cp mono-wrapper $@
180
181 $(tmpinst)/bin/mcs: $(tmpinst)/bin/mono Makefile
182         echo '#! /bin/sh' > $@ ; \
183         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
184         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe"'" "$$@"' >> $@ ; \
185         chmod +x $@
186
187 $(tmpinst)/bin/gmcs: $(tmpinst)/bin/mono Makefile
188         echo '#! /bin/sh' > $@ ; \
189         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
190         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe -sdk:2"'" "$$@"' >> $@ ; \
191         chmod +x $@
192
193 $(tmpinst)/bin/dmcs: $(tmpinst)/bin/mono Makefile
194         echo '#! /bin/sh' > $@ ; \
195         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
196         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/build/mcs.exe -sdk:4"'" "$$@"' >> $@ ; \
197         chmod +x $@
198
199 $(tmpinst)/bin/ilasm: $(tmpinst)/bin/mono Makefile
200         echo '#! /bin/sh' > $@ ; \
201         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
202         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/ilasm/ilasm.exe"'" "$$@"' >> $@ ; \
203         chmod +x $@
204
205 $(tmpinst)/bin/al2: $(tmpinst)/bin/mono Makefile
206         echo '#! /bin/sh' > $@ ; \
207         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
208         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/net_2_0/al.exe"'" "$$@"' >> $@ ; \
209         chmod +x $@
210
211 $(tmpinst)/bin/al: $(tmpinst)/bin/mono Makefile
212         echo '#! /bin/sh' > $@ ; \
213         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
214         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/$(al_profile)/al.exe"'" "$$@"' >> $@ ; \
215         chmod +x $@
216
217 test-support-files: $(TEST_SUPPORT_FILES)
218         @:
219
220 # the 'cygnus' option also disables the default 'distdir:' target, which we _do_ want
221 MYDISTFILES = $(DIST_COMMON)
222 distdir: $(MYDISTFILES)
223         rm -fr $(distdir)
224         mkdir $(distdir)
225         test -z '$(MYDISTFILES)' || for file in ''$(MYDISTFILES); do \
226           cp -p $$file $(distdir) ; done
227         find $(distdir) -type f -exec chmod a+r {} ';'