1 AUTOMAKE_OPTIONS = foreign
4 SUBDIRS = $(libgc_dir) mono $(ikvm_jni_dir) docs data runtime scripts man samples support web
6 # Keep in sync with SUBDIRS
7 ## 'tools' is not normally built
8 DIST_SUBDIRS = libgc mono ikvm-jni docs data runtime scripts man samples support web tools
10 EXTRA_DIST= mono.pc.in mono.spec.in mint.pc.in
12 pkgconfigdir = $(libdir)/pkgconfig
14 pkgconfig_DATA= mono.pc mint.pc
16 pkgconfig_DATA= mint.pc
18 DISTCLEANFILES= mono.pc mint.pc
21 # The following targets are used to compile and install
22 # mono and mcs without running into the out-of-sync
23 # problems by doing the compilation in the right order.
26 mcs_topdir=$(top_srcdir)/../mcs
28 .PHONY: bootstrap faststrap fasterstrap bootstrap-clean bootstrap-check get-monolite-latest monolite-bootstrap
29 .PHONY: tmpinst-dir tmpinst-mcs-basic-build tmpinst-mcs-short-build tmpinst-mcs-full-build tmpinst-monolite
30 .PHONY: mono-do-runtime-only mcs-do-basic-build mcs-do-short-build mcs-do-full-build mcs-do-clean-profiles mcs-do-run-test
31 .PHONY: populate-runtime-subdir
34 mono_runtime = mono/mini/mono
36 mono_runtime = mono/interpreter/mint
39 # Minimal set of directories to build, and files used to run the 'mcs' compiler
40 MCS_BASIC_DIRS = jay mcs class/corlib class/System
42 $(mcs_topdir)/mcs/mcs.exe \
43 $(mcs_topdir)/class/lib/default/mscorlib.dll \
44 $(mcs_topdir)/class/lib/default/System.dll
46 # Set of directories and files the 'mcs' compiler can use
47 ## We build class/System twice to resolve the cyclic dependency of class/System.XML
48 MCS_DIRS = $(MCS_BASIC_DIRS) class/System.XML class/System class/Mono.CSharp.Debugger
49 MCS_FILES = $(MCS_BASIC_FILES) \
50 $(mcs_topdir)/class/lib/default/System.Xml.dll \
51 $(mcs_topdir)/class/lib/default/Mono.CompilerServices.SymbolWriter.dll
57 populate_profiles = default:net_1_1
59 # bootstraps using the .NET C# compiler
60 bootstrap: tmpinst-dir mono-do-runtime-only
65 populate_profiles = default:net_1_1 net_2_0:net_2_0
67 bootstrap: tmpinst-mcs-basic-build mono-do-runtime-only
68 $(MAKE) tmpinst-mcs-short-build
73 faststrap: tmpinst-mcs-short-build
74 $(MAKE) mono-do-runtime-only
77 fasterstrap: tmpinst-mcs-full-build
78 $(MAKE) populate-runtime-subdir
81 bootstrap-clean: clean mcs-do-clean-profiles
82 bootstrap-check: check mcs-do-run-test
84 # building with monolite
87 wget -O $(srcdir)/../monolite-latest.tar.gz http://www.go-mono.com/daily/monolite-latest.tar.gz
89 monolite-bootstrap: tmpinst-monolite mono-do-runtime-only
91 $(MAKE) tmpinst-mcs-short-build
95 $(MAKE) bootstrap-clean
98 $(MAKE) mcs-do-compiler-tests
102 tmpinst-mcs-basic-build: mcs-do-basic-build tmpinst-dir
103 mv -f $(MCS_BASIC_FILES) $(tmpinst)/lib
105 tmpinst-mcs-short-build: mcs-do-short-build tmpinst-dir
106 mv -f $(MCS_FILES) $(tmpinst)/lib
108 tmpinst-mcs-full-build: mcs-do-full-build tmpinst-dir
109 cp -f $(MCS_FILES) $(tmpinst)/lib
111 tmpinst-monolite: tmpinst-dir
112 -rm -f $(tmpinst)/lib/mcs.exe $(tmpinst)/lib/*.dll
113 -rm -fr $(tmpinst)/monolite-*
114 srcdir=`cd $(srcdir) && pwd` && cd $(tmpinst) && ( gzip -d -c $$srcdir/../monolite-latest.tar.gz | tar xf - )
115 mv -f $(tmpinst)/monolite-*/mcs.exe $(tmpinst)/monolite-*/*.dll $(tmpinst)/lib
116 rm -fr $(tmpinst)/monolite-*
118 # Build enough of 'mono' to run the stage1 mcs.exe
119 mono-do-runtime-only: $(CONFIG_HEADER)
120 for dir in $(libgc_dir) mono data; do \
121 (cd $$dir && $(MAKE)) || exit 1 ; \
126 for dir in $(MCS_BASIC_DIRS); do \
127 (cd $(mcs_topdir)/$$dir && $(MAKE) PROFILE=default NO_SIGN_ASSEMBLY=yes USE_BOOT_COMPILE=yes BOOTSTRAP_MCS="mcs -d:BOOTSTRAP_WITH_OLDLIB") || exit 1 ; \
131 tmpinst=`cd $(tmpinst) && pwd` ; \
132 PATH=$$tmpinst/bin:$$PATH; export PATH ; \
133 for dir in $(MCS_DIRS); do \
134 (cd $(mcs_topdir)/$$dir && $(MAKE) PROFILE=default NO_SIGN_ASSEMBLY=yes) || exit 1 ; \
138 tmpinst=`cd $(tmpinst) && pwd` ; \
139 PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
140 cd $(mcs_topdir) && $(MAKE) all-profiles
142 mcs-do-clean-profiles:
143 cd $(mcs_topdir) && $(MAKE) clean-profiles
145 mcs-do-run-test: tmpinst-dir $(tmpinst)/bin/mbas
146 tmpinst=`cd $(tmpinst) && pwd` ; \
147 PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
148 cd $(mcs_topdir) && $(MAKE) PROFILE=default run-test
150 mcs-do-compiler-tests:
151 cd $(mcs_topdir) && $(MAKE) test-compiler
153 populate-runtime-subdir:
154 test -n '$(populate_profiles)'
155 @srcdir=`cd $(srcdir) && pwd`; tmpinst=`pwd`/$(tmpinst) ; \
156 PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
157 for profile in $(populate_profiles); do \
158 ( set fnord `echo $$profile | sed 's,:, ,g'` && \
159 echo "cd $(mcs_topdir) && $(MAKE) PROGRAM_INSTALL_DIR=$$srcdir/runtime PROFILE=$$2 LIBRARY_INSTALL_DIR=$$srcdir/runtime/$$3 prefix=$$tmpinst/prefix install" && \
160 cd $(mcs_topdir) && \
161 $(MAKE) PROGRAM_INSTALL_DIR=$$srcdir/runtime PROFILE=$$2 LIBRARY_INSTALL_DIR=$$srcdir/runtime/$$3 prefix=$$tmpinst/prefix install ) || exit 1 ; \
163 find $(tmpinst)/prefix -type f -name '*jay*' -exec rm -f '{}' ';'
164 for i in `find $(tmpinst)/prefix -type d -name '*jay*' -print`; do rm -f $$i/*; done
165 test -z "`find $(tmpinst)/prefix -type f -print`"
166 rm -rf $(tmpinst)/prefix
169 mkdir -p $(tmpinst) $(tmpinst)/bin $(tmpinst)/lib $(tmpinst)/etc/mono/1.0
170 $(MAKE) tmpinst-dir-contents
172 tmpinst-dir-contents: $(tmpinst)/bin/mono $(tmpinst)/bin/mcs $(tmpinst)/etc/mono/1.0/machine.config
176 $(tmpinst)/bin/mono: $(srcdir)/Makefile.am
177 echo '#! /bin/sh' > $@
178 echo 'builddir="'`pwd`'"; win_builddir="'`cygpath -w -a .`'"' >> $@
179 echo 'tmpinst="$$win_builddir\\$(tmpinst)"' >> $@
180 echo 'if test -z "$$MONO_PATH" ; then MONO_PATH="$$tmpinst\\lib"; else MONO_PATH="$${MONO_PATH};$$tmpinst\\lib" ; fi' >> $@
181 echo 'MONO_CFG_DIR="$$tmpinst\\etc"' >> $@
182 echo 'export MONO_PATH MONO_CFG_DIR' >> $@
183 echo 'exec "$$builddir/libtool" --mode=execute "$$builddir/$(mono_runtime).exe" "$$@"' >> $@
188 $(tmpinst)/bin/mono: $(srcdir)/Makefile.am
189 echo '#! /bin/sh' > $@
190 echo 'builddir="'`pwd`'"; tmpinst=$$builddir/$(tmpinst)' >> $@
191 echo 'if test -z "$$MONO_PATH" ; then MONO_PATH=$$tmpinst/lib; else MONO_PATH=$${MONO_PATH}:$$tmpinst/lib ; fi' >> $@
192 echo 'MONO_CFG_DIR=$$tmpinst/etc' >> $@
193 echo 'export MONO_PATH MONO_CFG_DIR' >> $@
194 echo 'exec "$$builddir/libtool" --mode=execute "$$builddir/$(mono_runtime)" --config "$$builddir/data/config" "$$@"' >> $@
199 $(tmpinst)/bin/mcs: $(srcdir)/Makefile.am
200 (t=`cd $(tmpinst) && pwd`; echo '#! /bin/sh'; echo 'exec "'"$$t/bin/mono"'" "'"$$t/lib/mcs.exe"'" "$$@"') > $@
203 # Used only by 'bootstrap-check' -- so, can safely use runtime/mbas.exe.
204 $(tmpinst)/bin/mbas: $(srcdir)/Makefile.am
205 t=`cd $(tmpinst) && pwd`; r=`cd $(srcdir)/runtime && pwd`; \
206 ( echo '#! /bin/sh'; echo 'exec "'"$$t/bin/mono"'" "'"$$r/mbas.exe"'" "$$@"' ) > $@
209 $(tmpinst)/etc/mono/1.0/machine.config: $(srcdir)/data/net_1_1/machine.config
211 srcdir=`cd $(srcdir) && pwd`; cd $(tmpinst)/etc/mono/1.0 && $(LN_S) $$srcdir/data/net_1_1/machine.config machine.config
213 # Obsolete target -- don't use.
217 echo "*** 'fullbuild' is an obsolete target. Use 'make bootstrap && make install'."
221 wget http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip
222 wget http://www.go-mono.com/archive/glib-2.0.4-20020703.zip
223 wget http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip
224 wget http://www.go-mono.com/archive/libiconv-1.7.zip
225 wget http://www.go-mono.com/archive/libiconv-dev-1.7.zip
226 wget http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip
227 wget http://www.jroith.de/nsis4cygwin.zip
228 unzip -n -d / pkgconfig-0.11-20020310.zip
229 unzip -n -d / glib-2.0.4-20020703.zip
230 unzip -n -d / glib-dev-2.0.4-20020703.zip
231 unzip -n -d / libiconv-1.7.zip
232 unzip -n -d / libiconv-dev-1.7.zip
233 unzip -n -d / libintl-0.10.40-20020101.zip
234 unzip -n -d / nsis4cygwin.zip
237 makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi