2009-07-21 Jb Evain <jbevain@novell.com>
[mono.git] / runtime / Makefile.am
1 # hack to prevent 'check' from depending on 'all'
2 AUTOMAKE_OPTIONS = cygnus
3
4 tmpinst = _tmpinst
5
6 noinst_SCRIPTS = mono-wrapper monodis-wrapper
7
8 etctmp = etc
9 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
10
11 etc/mono/1.0/machine.config: $(top_srcdir)/data/net_1_1/machine.config
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/net_2_0/Browsers/Compat.browser
16
17 $(symlinks):
18         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
19
20 SUPPORT_FILES = $(symlinks) mono-wrapper etc/mono/config
21
22 build_profiles = net_1_1
23 test_profiles = $(build_profiles)
24
25 if INSTALL_2_0
26 build_profiles += net_2_0 net_3_5
27 test_profiles += net_2_0 net_3_5
28 endif
29
30 if INSTALL_4_0
31 build_profiles += net_4_0
32 #test_profiles += net_4_0
33 endif
34
35 if INSTALL_2_1
36 build_profiles += net_2_1_raw
37 test_profiles += net_2_1_raw
38 endif
39
40 if INSTALL_MONOTOUCH
41 build_profiles += monotouch
42 endif
43
44 if BUILD_MCS
45
46 # The write check is to foil 'make distcheck'
47 all-local: $(SUPPORT_FILES) $(TEST_SUPPORT_FILES)
48         if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
49         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' CC='$(CC)' all-profiles
50
51 # override automake
52 install: install-exec install-data
53
54 # override automake
55 install-exec: $(SUPPORT_FILES) $(TEST_SUPPORT_FILES)
56         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
57
58 # override automake
59 install-data:
60         @:
61
62 # override automake
63 uninstall:
64         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
65
66 ## mono --wapi=semdel will probably not delete the semaphore if someone is crazy enough to do a 'make -j distclean' :-)
67 clean-local:
68         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(build_profiles)' clean-profiles
69         -./mono-wrapper --wapi=semdel
70         -rm -fr $(etctmp) $(tmpinst) .wapi
71
72 endif BUILD_MCS
73
74 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs
75
76 # now a misnomer, but it'll go away soon enough.
77 if ENABLE_NUNIT_TESTS
78 test_select =
79 else
80 test_select = ONLY_CENTUM_TESTS=yes
81 endif
82
83 if INSTALL_2_1
84 moon-do-build: test-support-files
85         cd $(top_builddir)/../moon/class && $(MAKE) all
86 else
87 moon-do-build:
88         @:
89 endif
90
91 mcs-do-test-profiles:
92         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(test_profiles)' test-profiles
93
94 mcs-do-run-test-profiles: test-support-files
95         cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='$(test_profiles)' run-test-profiles
96
97 if PLATFORM_WIN32
98 if CROSS_COMPILING
99 cur_dir_cmd = pwd
100 PLATFORM_PATH_SEPARATOR = :
101 else
102 cur_dir_cmd = cygpath -w -a .
103 PLATFORM_PATH_SEPARATOR = ;
104 endif
105 else
106 cur_dir_cmd = pwd
107 PLATFORM_PATH_SEPARATOR = :
108 endif
109
110 # Compile all assemblies with the verifier turned on. Code must be valid but not verifiable.
111 # TODO it would be nice to split assemblies without unsafe code to use the verifier with verifiable mode.
112 # Skip net 2.1 assemblies for now because of visibility problems
113 mcs-compileall: mono-wrapper etc/mono/config
114         save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
115         for profile in $(test_profiles); do \
116           if [ "net_2_1" = "$$profile" ]; then \
117           break; \
118       fi; \
119           if [ "net_3_5" = "$$profile" ]; then \
120                   MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
121           else \
122                   MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
123           fi; \
124           export MONO_PATH; \
125           for i in $(mcs_topdir)/class/lib/$$profile/*.{dll,exe}; do \
126                 if [ ! -f $$i ] ; then \
127                         continue ; \
128                 fi ;  \
129             if ./mono-wrapper --compile-all --verify-all --security=validil $$i; then \
130               echo $$i verified OK; \
131             else \
132               echo $$i verification failed; ok=false; \
133             fi; done; done; \
134         $$ok
135
136 check-local: mcs-compileall mcs-do-test-profiles
137         $(MAKE) $(test_select) mcs-do-run-test-profiles
138
139 CLEANFILES = etc/mono/config
140
141 # depend on $(symlinks) to ensure 'etc/mono' directory exists
142 etc/mono/config: ../data/config Makefile $(symlinks)
143         d=`cd ../support && pwd`; \
144         sed 's,target="libMonoPosixHelper[^"]*",target="'$$d/libMonoPosixHelper.la'",' ../data/config > $@t
145         if test -z "$(libgdiplus_loc)"; then :; else \
146           sed 's,<configuration>,& <dllmap dll="gdiplus.dll" target="$(libgdiplus_loc)" />,' $@t > $@tt; \
147           mv -f $@tt $@t; fi
148         mv -f $@t $@
149
150 $(tmpinst)/bin/mono: mono-wrapper etc/mono/config
151         $(mkinstalldirs) $(tmpinst)/bin
152         cp mono-wrapper $@
153
154 $(tmpinst)/bin/mcs: $(tmpinst)/bin/mono Makefile
155         echo '#! /bin/sh' > $@ ; \
156         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
157         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/net_1_1/mcs.exe"'" "$$@"' >> $@ ; \
158         chmod +x $@
159
160 $(tmpinst)/bin/gmcs: $(tmpinst)/bin/mono Makefile
161         echo '#! /bin/sh' > $@ ; \
162         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
163         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/class/lib/net_2_0/gmcs.exe"'" "$$@"' >> $@ ; \
164         chmod +x $@
165
166 $(tmpinst)/bin/ilasm: $(tmpinst)/bin/mono Makefile
167         echo '#! /bin/sh' > $@ ; \
168         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; \
169         echo 'exec "'"$$r/$(tmpinst)/bin/mono"'" "'"$$m/ilasm/ilasm.exe"'" "$$@"' >> $@ ; \
170         chmod +x $@
171
172 test-support-files: $(TEST_SUPPORT_FILES)
173         @:
174
175 # the 'cygnus' option also disables the default 'distdir:' target, which we _do_ want
176 MYDISTFILES = $(DIST_COMMON)
177 distdir: $(MYDISTFILES)
178         rm -fr $(distdir)
179         mkdir $(distdir)
180         test -z '$(MYDISTFILES)' || for file in ''$(MYDISTFILES); do \
181           cp -p $$file $(distdir) ; done
182         find $(distdir) -type f -exec chmod a+r {} ';'