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
26 mono-uninstalled.pc.in \
29 DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false
31 # Distribute the 'mcs' tree too
32 GIT_DIR ?= $(srcdir)/.git
34 test -d $(distdir)/mcs || mkdir $(distdir)/mcs
35 d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) distdir=$$d dist-recursive
36 test ! -d $(GIT_DIR) || ./scripts/commits-to-changelog.py --root=$(distdir) last-commit-with-compulsory-changelog-entry
38 pkgconfigdir = $(libdir)/pkgconfig
39 noinst_DATA = mono-uninstalled.pc
40 DISTCLEANFILES= mono-uninstalled.pc
42 # building with monolite
43 mcslib = $(mcs_topdir)/class/lib
44 monolite = $(mcslib)/monolite
45 mono_corlib_version = $(shell sed -n "s/\#define MONO_CORLIB_VERSION //p" $(srcdir)/mono/metadata/appdomain.c)
46 monolite_url = http://mono.ximian.com/daily/monolite-$(mono_corlib_version)-latest.tar.gz
47 .PHONY: get-monolite-latest
49 -rm -fr $(mcslib)/monolite-*
51 test ! -d $(monolite) || test ! -d $(monolite).old || rm -fr $(monolite).old
52 test ! -d $(monolite) || mv -f $(monolite) $(monolite).old
53 cd $(mcslib) && { (wget -O- $(monolite_url) || curl $(monolite_url)) | gzip -d | tar xf - ; }
54 cd $(mcslib) && mv -f monolite-* monolite
56 .PHONY: validate do-build-mono-mcs mcs-do-clean mcs-do-tests
57 validate: do-build-mono-mcs
59 do-build-mono-mcs: mcs-do-clean
62 cd runtime && $(MAKE) clean-local
63 cd mono/tests && $(MAKE) clean
65 cd runtime && $(MAKE) check-local
66 cd mono/tests && $(MAKE) check
68 .PHONY: compiler-tests mcs-do-compiler-tests
70 $(MAKE) test_select='TEST_SUBDIRS="tests errors"' validate
71 mcs-do-compiler-tests:
72 $(MAKE) test_select='TEST_SUBDIRS="tests errors"' mcs-do-tests
74 .PHONY: bootstrap-world
75 bootstrap-world: compiler-tests
79 moon-do-build: config.h
80 @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
82 xmono ) target="moon-do-build";; \
85 echo "Making $$target in $$subdir"; \
86 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
88 (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-build)
91 @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
93 xmono ) target="moon-do-clean";; \
94 * ) target="clean";; \
96 echo "Making $$target in $$subdir"; \
97 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
99 (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-clean)
104 wget http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip
105 wget http://www.go-mono.com/archive/glib-2.0.4-20020703.zip
106 wget http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip
107 wget http://www.go-mono.com/archive/libiconv-1.7.zip
108 wget http://www.go-mono.com/archive/libiconv-dev-1.7.zip
109 wget http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip
110 unzip -n -d / pkgconfig-0.11-20020310.zip
111 unzip -n -d / glib-2.0.4-20020703.zip
112 unzip -n -d / glib-dev-2.0.4-20020703.zip
113 unzip -n -d / libiconv-1.7.zip
114 unzip -n -d / libiconv-dev-1.7.zip
115 unzip -n -d / libintl-0.10.40-20020101.zip
118 makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi
121 find mono -name Makefile -exec scripts/patch-quiet.sh {} \;
122 find libgc -name Makefile -exec scripts/patch-quiet.sh {} \;
125 -rm msvc/scripts/order
126 -mkdir msvc/scripts/inputs
127 (cd runtime; make V=1 extra_targets=csproj-local)
130 echo '<?xml version="1.0" encoding="utf-8"?>' > msvc/scripts/order.xml
131 echo '<root>' >> msvc/scripts/order.xml
132 for i in `cat msvc/scripts/order`; do \
133 set `echo $$i | sed -e 's/:/ /' -e 's/.input//'`; \
134 cat msvc/scripts/inputs/$$2.input | \
135 (echo " <project dir=\"$$1\" library=\"$$2\">"; \
136 read boot; echo " <boot>$$boot</boot>"; \
137 read mcs; echo " <mcs>$$mcs</mcs>"; \
138 read flags; echo " <flags>$$flags</flags>"; \
139 read output; echo " <output>$$output</output>"; \
140 read built; echo " <built_sources>$$built</built_sources>"; \
141 read libou; echo " <library_output>$$libou</library_output>"; \
142 read resp; echo " <response>$$resp</response>"; \
143 echo " </project>") >> msvc/scripts/order.xml; \
145 echo "</root>" >> msvc/scripts/order.xml