1 # hack to prevent 'check' from depending on 'all'
2 AUTOMAKE_OPTIONS = cygnus
6 noinst_SCRIPTS = mono-wrapper monodis-wrapper semdel-wrapper
9 symlinks = etc/mono/1.0/machine.config etc/mono/2.0/machine.config etc/mono/2.0/web.config
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
16 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
18 SUPPORT_FILES = $(symlinks) mono-wrapper etc/mono/config
21 build_profiles = default net_2_0
23 build_profiles = default
28 # The write check is to foil 'make distcheck'
29 all-local: $(SUPPORT_FILES)
30 if test -w $(mcs_topdir); then :; else chmod -R +w $(mcs_topdir); fi
31 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' CC='$(CC)' all-profiles
34 install: install-exec install-data
37 install-exec: $(SUPPORT_FILES)
38 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) install-profiles
46 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' RUNTIME_HAS_CONSISTENT_GACDIR=yes prefix=$(prefix) uninstall-profiles
48 ## semdel-wrapper will probably not delete the semaphore if someone is crazy enough to do a 'make -j distclean' :-)
50 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' clean-profiles
52 -rm -fr $(etctmp) $(tmpinst) .wapi
57 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm $(tmpinst)/bin/gmcs
59 TEST_SUPPORT_FILES = $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm
62 # now a misnomer, but it'll go away soon enough.
66 test_select = ONLY_CENTUM_TESTS=yes
70 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' test-profiles
72 mcs-do-run-test-profiles: test-support-files
73 d=`cd $(tmpinst) && pwd`; PATH=$$d/bin:$$PATH ; export PATH ; \
74 cd $(mcs_topdir) && $(MAKE) PROFILES='$(build_profiles)' run-test-profiles
77 cur_dir_cmd = cygpath -w -a .
78 PLATFORM_PATH_SEPARATOR = ;
81 PLATFORM_PATH_SEPARATOR = :
84 # Use --compile-all as a poor man's PEVerify to detect invalid IL
85 mcs-compileall: mono-wrapper etc/mono/config
86 save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
87 for profile in $(build_profiles); do \
88 MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; export MONO_PATH; \
89 for i in $(mcs_topdir)/class/lib/$$profile/*.dll $(mcs_topdir)/class/lib/$$profile/*.exe; do \
90 if ./mono-wrapper --compile-all $$i; then \
91 echo $$i verified OK; \
93 echo $$i verification failed; ok=false; \
97 check-local: mcs-compileall mcs-do-test-profiles
98 $(MAKE) $(test_select) mcs-do-run-test-profiles
100 CLEANFILES = etc/mono/config
102 # depend on $(symlinks) to ensure 'etc/mono' directory exists
103 etc/mono/config: ../data/config Makefile $(symlinks)
104 d=`cd ../support && pwd`; \
105 sed 's,target="libMonoPosixHelper[^"]*",target="'$$d/libMonoPosixHelper.la'",' ../data/config > $@t
106 if test -z "$(libgdiplus_loc)"; then :; else \
107 sed 's,<configuration>,& <dllmap dll="gdiplus.dll" target="$(libgdiplus_loc)" />,' $@t > $@tt; \
111 $(tmpinst)/bin/mono: mono-wrapper etc/mono/config
115 $(MAKE) test-support-file target=$@ file=class/lib/default/mcs.exe
118 $(MAKE) test-support-file target=$@ file=mbas/mbas.exe
121 $(MAKE) test-support-file target=$@ file=gmcs/gmcs.exe
123 $(tmpinst)/bin/ilasm:
124 $(MAKE) test-support-file target=$@ file=ilasm/ilasm.exe
127 $(mkinstalldirs) $(tmpinst)/bin
128 $(MAKE) $(TEST_SUPPORT_FILES)
131 echo '#! /bin/sh' > $(target)
132 r=`pwd`; m=`cd $(mcs_topdir) && pwd`; echo 'exec "'"$$r/mono-wrapper"'" "'"$$m/$(file)"'" "$$@"' >> $(target)
135 $(tmpinst)/bin/pedump: $(srcdir)/Makefile.am
137 (b=`pwd`; echo '#! /bin/sh'; echo 'exec "'"$$b/libtool"'" --mode=execute "'"$$b/mono/metadata/pedump"'" "$$@"') > $@
140 # the 'cygnus' option also disables the default 'distdir:' target, which we _do_ want
141 MYDISTFILES = $(DIST_COMMON)
142 distdir: $(MYDISTFILES)
145 test -z '$(MYDISTFILES)' || for file in ''$(MYDISTFILES); do \
146 cp -p $$file $(distdir) ; done
147 find $(distdir) -type f -exec chmod a+r {} ';'