* scripts/script.in: Add @framework_version@ blank.
[mono.git] / Makefile.am
1 AUTOMAKE_OPTIONS = foreign
2 ACLOCAL_AMFLAGS = -I .
3
4 SUBDIRS = $(libgc_dir) mono $(ikvm_native_dir) support docs data runtime scripts man samples web 
5
6 # Keep in sync with SUBDIRS
7 ## 'tools' is not normally built
8 DIST_SUBDIRS = libgc mono ikvm-native support docs data runtime scripts man samples web tools 
9
10 EXTRA_DIST= mono.pc.in mint.pc.in mono-uninstalled.pc.in
11
12 # Distribute the 'mcs' tree too
13 dist-hook:
14         test -d $(distdir)/mcs || mkdir $(distdir)/mcs
15         d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) PROFILE=default distdir=$$d dist-recursive
16
17 pkgconfigdir = $(libdir)/pkgconfig
18 if JIT_SUPPORTED
19 pkgconfig_DATA= mono.pc mint.pc
20 else
21 pkgconfig_DATA= mint.pc
22 endif
23 noinst_DATA = mono-uninstalled.pc
24 DISTCLEANFILES= mono.pc mint.pc mono-uninstalled.pc
25
26 .PHONY: get-monolite-latest mcs-do-compiler-tests compiler-tests bootstrap-world
27
28 # building with monolite
29 mcslib = $(mcs_topdir)/class/lib
30 monolite = $(mcslib)/monolite
31 get-monolite-latest:
32         -rm -fr $(mcslib)/monolite-*
33         test ! -d $(monolite) || test ! -d $(monolite).old || rm -fr $(monolite).old
34         test ! -d $(monolite) || mv -f $(monolite) $(monolite).old
35         cd $(mcslib) && { wget -O- http://www.go-mono.com/daily/monolite-latest.tar.gz | gzip -d | tar xf - ; }
36         cd $(mcslib) && mv -f monolite-* monolite
37
38 compiler-tests: mcs-do-clean
39         $(MAKE) all
40         $(MAKE) mcs-do-compiler-tests
41
42 compiler-tests-net_2_0:
43         cd $(mcs_topdir) && $(MAKE) PROFILE=net_2_0_bootstrap clean
44         cd $(mcs_topdir) && $(MAKE) PROFILE=net_2_0 clean
45         $(MAKE) all
46         $(MAKE) build_profiles=net_2_0 mcs-do-compiler-tests
47
48 bootstrap-world: compiler-tests
49         $(MAKE) install
50
51 bootstrap-world-net_2_0: compiler-tests-net_2_0
52         $(MAKE) install
53
54 # internal targets
55 mcs-do-clean:
56         cd runtime && $(MAKE) clean-local
57 mcs-do-compiler-tests:
58         cd runtime && $(MAKE) test_select='TEST_SUBDIRS="tests errors"' check-local
59
60 win32getdeps:
61         wget http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip
62         wget http://www.go-mono.com/archive/glib-2.0.4-20020703.zip 
63         wget http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip 
64         wget http://www.go-mono.com/archive/libiconv-1.7.zip 
65         wget http://www.go-mono.com/archive/libiconv-dev-1.7.zip 
66         wget http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip
67         unzip -n -d / pkgconfig-0.11-20020310.zip
68         unzip -n -d / glib-2.0.4-20020703.zip
69         unzip -n -d / glib-dev-2.0.4-20020703.zip
70         unzip -n -d / libiconv-1.7.zip
71         unzip -n -d / libiconv-dev-1.7.zip
72         unzip -n -d / libintl-0.10.40-20020101.zip
73
74 win32setup:
75         makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi
76
77 bootstrap: all
78         @echo "*** 'make bootstrap' is obsolete.  Just run 'make' to perform a combined mono+mcs build"
79         exit 1