* runtime/Makefile.am (all-local, install-exec, uninstall)
[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 semdel-wrapper
7
8 etctmp = etc
9 symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config
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
14 $(symlinks):
15         cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
16
17 SUPPORT_FILES = $(symlinks) mono-wrapper wrapper-config
18
19 # The write check is to foil 'make distcheck'
20 all-local: $(SUPPORT_FILES)
21         if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
22         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' all-profiles
23
24 if INSTALL_2_0
25 build_profiles = default net_2_0
26 else
27 build_profiles = default
28 endif
29
30 # override automake
31 install: install-exec install-data
32
33 # override automake
34 install-exec: $(SUPPORT_FILES)
35         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
36
37 # override automake
38 install-data:
39         @:
40
41 # override automake
42 uninstall:
43         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
44
45 ## semdel-wrapper will probably not delete the semaphore if someone is crazy enough to do a 'make -j distclean' :-)
46 clean-local:
47         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles
48         -./semdel-wrapper
49         -rm -fr $(etctmp) $(tmpinst) .wapi
50
51 if INSTALL_2_0
52 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs
53 else
54 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm
55 endif
56
57 # now a misnomer, but it'll go away soon enough.
58 if ENABLE_NUNIT_TESTS
59 test_select =
60 else
61 test_select = ONLY_CENTUM_TESTS=yes
62 endif
63
64 mcs-do-test-profiles:
65         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' test-profiles
66
67 mcs-do-run-test-profiles: test-support-files
68         d=`cd $(tmpinst) && pwd`; PATH=$$d/bin:$$PATH ; export PATH ; \
69         cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' run-test-profiles
70
71 if PLATFORM_WIN32
72 cur_dir_cmd = cygpath -w -a .
73 PLATFORM_PATH_SEPARATOR = ;
74 else
75 cur_dir_cmd = pwd
76 PLATFORM_PATH_SEPARATOR = :
77 endif
78
79 # Use --compile-all as a poor man's PEVerify to detect invalid IL
80 mcs-compileall: mono-wrapper wrapper-config
81         save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
82         for profile in $(build_profiles); do \
83           MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; export MONO_PATH; \
84           for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe $(mcs_topdir)/class/Microsoft.VisualBasic/fixup/$$profile/*.dll; do \
85             if ./mono-wrapper --compile-all $$i; then \
86               echo $$i verified OK; \
87             else \
88               echo $$i verification failed; ok=false; \
89             fi; done; done; \
90         $$ok
91
92 check-local: mcs-compileall mcs-do-test-profiles
93         $(MAKE) $(test_select) mcs-do-run-test-profiles
94
95 CLEANFILES = wrapper-config
96
97 wrapper-config: ../data/config Makefile
98         d=`cd ../support && pwd`; \
99         sed 's,target="libMonoPosixHelper[^"]*",target="'$$d/libMonoPosixHelper.la'",' ../data/config > $@
100         if test -z "$(libgdiplus_loc)"; then :; else \
101           mv $@ $@t; \
102           sed 's,<configuration>,& <dllmap dll="gdiplus.dll" target="$(libgdiplus_loc)" />,' $@t > $@; \
103           rm -f $@t; \
104         fi
105
106 $(tmpinst)/bin/mono: mono-wrapper wrapper-config
107         cp mono-wrapper $@
108
109 $(tmpinst)/bin/mcs:
110         $(MAKE) test-support-file target=$@ file=class/lib/default/mcs.exe
111
112 $(tmpinst)/bin/mbas:
113         $(MAKE) test-support-file target=$@ file=mbas/mbas.exe
114
115 $(tmpinst)/bin/gmcs:
116         $(MAKE) test-support-file target=$@ file=gmcs/gmcs.exe
117
118 $(tmpinst)/bin/ilasm:
119         $(MAKE) test-support-file target=$@ file=ilasm/ilasm.exe
120
121 test-support-files:
122         $(mkinstalldirs) $(tmpinst)/bin
123         $(MAKE) $(TEST_SUPPORT_FILES)
124
125 test-support-file:
126         echo '#! /bin/sh' > $(target)
127         r=`pwd`; m=`cd $(mcs_topdir) && pwd`; echo 'exec "'"$$r/mono-wrapper"'" "'"$$m/$(file)"'" "$$@"' >> $(target)
128         chmod +x $(target)
129
130 $(tmpinst)/bin/pedump: $(srcdir)/Makefile.am
131         $(mkdir_p) $(@D)
132         (b=`pwd`; echo '#! /bin/sh'; echo 'exec "'"$$b/libtool"'" --mode=execute "'"$$b/mono/metadata/pedump"'" "$$@"') > $@
133         chmod +x $@
134
135 # the 'cygnus' option also disables the default 'distdir:' target, which we _do_ want
136 MYDISTFILES = $(DIST_COMMON)
137 distdir: $(MYDISTFILES)
138         rm -fr $(distdir)
139         mkdir $(distdir)
140         test -z '$(MYDISTFILES)' || for file in ''$(MYDISTFILES); do \
141           cp -p $$file $(distdir) ; done
142         find $(distdir) -type f -exec chmod a+r {} ';'