1 ACLOCAL_AMFLAGS = -I m4
3 MOONLIGHT_SUBDIRS = $(libgc_dir) eglib/src mono
6 SUBDIRS = po $(libgc_dir) eglib mono $(ikvm_native_dir) data runtime scripts man samples msvc $(docs_dir)
7 # Keep in sync with SUBDIRS
8 ## 'tools' is not normally built
9 DIST_SUBDIRS = m4 po libgc eglib mono ikvm-native data runtime scripts man samples tools msvc docs
12 SUBDIRS = $(MOONLIGHT_SUBDIRS) runtime
14 SUBDIRS = po $(libgc_dir) eglib mono $(ikvm_native_dir) support data runtime scripts man samples msvc $(docs_dir)
15 # Keep in sync with SUBDIRS
16 ## 'tools' is not normally built
17 DIST_SUBDIRS = m4 po libgc eglib mono ikvm-native support data runtime scripts man samples tools msvc docs
21 all: update_submodules
23 SUBMODULE_ERROR='Could not recursively update all git submodules. You may experience compilation problems if some submodules are out of date'
25 @$(srcdir)/scripts/update_submodules
27 .PHONY: update_submodules
34 mono-uninstalled.pc.in \
39 DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false
41 # Distribute the 'mcs' tree too
42 GIT_DIR ?= $(srcdir)/.git
44 test -d $(distdir)/mcs || mkdir $(distdir)/mcs
45 d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) distdir=$$d dist-recursive
46 rm -rf `find $(top_distdir)/external -path '*\.git' -and -type d`
47 # Disable this for now because it is very slow and causes wrench to timeout:
48 # test ! -d $(GIT_DIR) || ./scripts/commits-to-changelog.py --root=$(distdir) last-commit-with-compulsory-changelog-entry
50 pkgconfigdir = $(libdir)/pkgconfig
51 noinst_DATA = mono-uninstalled.pc
52 DISTCLEANFILES= mono-uninstalled.pc
54 # building with monolite
55 mcslib = $(mcs_topdir)/class/lib
56 monolite = $(mcslib)/monolite
57 mono_corlib_version = $(shell sed -n "s/\#define MONO_CORLIB_VERSION //p" $(srcdir)/mono/metadata/appdomain.c)
58 monolite_url = http://storage.bos.xamarin.com/mono-dist-master/latest/monolite-$(mono_corlib_version)-latest.tar.gz
59 .PHONY: get-monolite-latest
61 -rm -fr $(mcslib)/monolite-*
63 test ! -d $(monolite) || test ! -d $(monolite).old || rm -fr $(monolite).old
64 test ! -d $(monolite) || mv -f $(monolite) $(monolite).old
65 cd $(mcslib) && { (wget -O- $(monolite_url) || curl $(monolite_url)) | gzip -d | tar xf - ; }
66 cd $(mcslib) && mv -f monolite-* monolite
68 .PHONY: validate do-build-mono-mcs mcs-do-clean mcs-do-tests
69 validate: do-build-mono-mcs
71 do-build-mono-mcs: mcs-do-clean
74 cd runtime && $(MAKE) clean-local
75 cd mono/tests && $(MAKE) clean
77 cd runtime && $(MAKE) check-local
78 cd mono/tests && $(MAKE) check
80 .PHONY: compiler-tests mcs-do-compiler-tests
82 $(MAKE) test_select='TEST_SUBDIRS="tests errors"' validate
83 mcs-do-compiler-tests:
84 $(MAKE) test_select='TEST_SUBDIRS="tests errors"' mcs-do-tests
86 .PHONY: bootstrap-world
87 bootstrap-world: compiler-tests
91 moon-do-build: config.h
92 @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
94 xmono ) target="moon-do-build";; \
97 echo "Making $$target in $$subdir"; \
98 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
100 (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-build)
103 @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
104 case "x$$subdir" in \
105 xmono ) target="moon-do-clean";; \
106 * ) target="clean";; \
108 echo "Making $$target in $$subdir"; \
109 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
111 (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-clean)
116 wget http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip
117 wget http://www.go-mono.com/archive/glib-2.0.4-20020703.zip
118 wget http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip
119 wget http://www.go-mono.com/archive/libiconv-1.7.zip
120 wget http://www.go-mono.com/archive/libiconv-dev-1.7.zip
121 wget http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip
122 unzip -n -d / pkgconfig-0.11-20020310.zip
123 unzip -n -d / glib-2.0.4-20020703.zip
124 unzip -n -d / glib-dev-2.0.4-20020703.zip
125 unzip -n -d / libiconv-1.7.zip
126 unzip -n -d / libiconv-dev-1.7.zip
127 unzip -n -d / libintl-0.10.40-20020101.zip
130 makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi
133 find mono -name Makefile -exec scripts/patch-quiet.sh {} \;
134 find libgc -name Makefile -exec scripts/patch-quiet.sh {} \;
137 -rm msvc/scripts/order
138 -mkdir msvc/scripts/inputs
139 (cd runtime; make V=1 extra_targets=csproj-local)
142 echo '<?xml version="1.0" encoding="utf-8"?>' > msvc/scripts/order.xml
143 echo '<root>' >> msvc/scripts/order.xml
144 for i in `cat msvc/scripts/order`; do \
145 set `echo $$i | sed -e 's/:/ /' -e 's/.input//'`; \
146 cat msvc/scripts/inputs/$$2.input | \
147 (echo " <project dir=\"$$1\" library=\"$$2\">"; \
148 read boot; echo " <boot>$$boot</boot>"; \
149 read mcs; echo " <mcs>$$mcs</mcs>"; \
150 read flags; echo " <flags>$$flags</flags>"; \
151 read output; echo " <output>$$output</output>"; \
152 read built; echo " <built_sources>$$built</built_sources>"; \
153 read libou; echo " <library_output>$$libou</library_output>"; \
154 read fx_ver; echo " <fx_version>$$fx_ver</fx_version>"; \
155 read resp; echo " <response>$$resp</response>"; \
156 echo " </project>") >> msvc/scripts/order.xml; \
158 echo "</root>" >> msvc/scripts/order.xml