[xbuild] Add property $(SkipCopyUnchangedFiles)
[mono.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 MOONLIGHT_SUBDIRS = $(libgc_dir) eglib/src mono
4
5 if CROSS_COMPILING
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
10 else
11 if ONLY_MOONLIGHT
12 SUBDIRS = $(MOONLIGHT_SUBDIRS) runtime
13 else
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
18 endif
19 endif
20
21 EXTRA_DIST= \
22             LICENSE \
23             autogen.sh \
24             build-mingw32.sh \
25             mkinstalldirs \
26             mono-uninstalled.pc.in \
27             winconfig.h
28
29 DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false
30
31 # Distribute the 'mcs' tree too
32 GIT_DIR ?= $(srcdir)/.git
33 dist-hook:
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
37
38 pkgconfigdir = $(libdir)/pkgconfig
39 noinst_DATA = mono-uninstalled.pc
40 DISTCLEANFILES= mono-uninstalled.pc
41
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 
48 get-monolite-latest:
49         -rm -fr $(mcslib)/monolite-*
50         -mkdir -p $(mcslib)
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
55
56 .PHONY: validate do-build-mono-mcs mcs-do-clean mcs-do-tests
57 validate: do-build-mono-mcs
58         $(MAKE) mcs-do-tests
59 do-build-mono-mcs: mcs-do-clean
60         $(MAKE) all
61 mcs-do-clean:
62         cd runtime && $(MAKE) clean-local
63         cd mono/tests && $(MAKE) clean
64 mcs-do-tests:
65         cd runtime && $(MAKE) check-local
66         cd mono/tests && $(MAKE) check
67
68 .PHONY: compiler-tests mcs-do-compiler-tests
69 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
73
74 .PHONY: bootstrap-world
75 bootstrap-world: compiler-tests
76         $(MAKE) install
77
78 if MOONLIGHT
79 moon-do-build: config.h
80         @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
81           case "x$$subdir" in \
82                 xmono ) target="moon-do-build";; \
83                 * ) target="all";; \
84           esac; \
85           echo "Making $$target in $$subdir"; \
86           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
87         done;
88         (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-build)
89
90 moon-do-clean:
91         @list='$(MOONLIGHT_SUBDIRS)'; for subdir in $$list; do \
92           case "x$$subdir" in \
93                 xmono ) target="moon-do-clean";; \
94                 * ) target="clean";; \
95           esac; \
96           echo "Making $$target in $$subdir"; \
97           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
98         done;
99         (cd runtime && $(MAKE) $(AM_MAKEFLAGS) moon-do-clean)
100
101 endif
102
103 win32getdeps:
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
116
117 win32setup:
118         makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi
119
120 patch-quiet:
121         find mono -name Makefile -exec scripts/patch-quiet.sh {} \;
122         find libgc -name Makefile -exec scripts/patch-quiet.sh {} \;
123
124 update-csproj:
125         -rm msvc/scripts/order 
126         -mkdir msvc/scripts/inputs
127         (cd runtime; make V=1 extra_targets=csproj-local)
128
129 package-inputs:
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; \
144         done
145         echo "</root>" >> msvc/scripts/order.xml