Add .sh extension to update_submodules so it gets correct line ending
[mono.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 AM_CFLAGS = $(WERROR_CFLAGS)
4
5 MONOTOUCH_SUBDIRS = $(libgc_dir) eglib/src mono
6
7 # Some tools might not build when cross-compiling
8 if CROSS_COMPILING
9 tools_dir =
10 else
11 tools_dir = tools
12 endif
13
14 SUBDIRS = po $(libgc_dir) eglib mono $(ikvm_native_dir) support data runtime scripts man samples $(tools_dir) msvc $(docs_dir) acceptance-tests llvm
15 # Keep in sync with SUBDIRS
16 DIST_SUBDIRS = m4 po $(libgc_dir) eglib mono ikvm-native support data runtime scripts man samples tools msvc docs acceptance-tests llvm
17
18 all: update_submodules
19
20 SUBMODULE_ERROR='Could not recursively update all git submodules. You may experience compilation problems if some submodules are out of date'
21 update_submodules:
22         @$(srcdir)/scripts/update_submodules.sh
23
24 .PHONY: update_submodules
25
26 EXTRA_DIST= \
27         README.md               \
28         LICENSE                 \
29         autogen.sh              \
30         mkinstalldirs           \
31         mono-uninstalled.pc.in  \
32         winconfig.h             \
33         code_of_conduct.md      \
34         external                \
35         mcs/class/referencesource
36
37 DISTCHECK_CONFIGURE_FLAGS = EXTERNAL_MCS=false EXTERNAL_RUNTIME=false
38
39 # Distribute the 'mcs' tree too
40 GIT_DIR ?= $(srcdir)/.git
41 dist-hook:
42         test -d $(distdir)/mcs || mkdir $(distdir)/mcs
43         d=`cd $(distdir)/mcs && pwd`; cd $(mcs_topdir) && $(MAKE) distdir=$$d dist-recursive
44         rm -rf `find $(top_distdir)/external -path '*\.git'`
45         rm -f `find $(top_distdir)/external -path '*\.exe' -not -path '*/roslyn-binaries/*'`
46         rm -f `find $(top_distdir)/external -path '*\.dll' -not -path '*/binary-reference-assemblies/*' -not -path '*/roslyn-binaries/*'`
47         cp mcs/class/lib/basic/System.Configuration.dll mcs/class/lib/monolite/
48         cp mcs/class/lib/basic/System.Security.dll mcs/class/lib/monolite/
49 # Disable this for now because it is very slow and causes wrench to timeout:
50 #       test ! -d $(GIT_DIR) || ./scripts/commits-to-changelog.py --root=$(distdir) last-commit-with-compulsory-changelog-entry
51
52 mac-sdk-package:
53         external/bockbuild/bb MacSDK --package
54
55 pkgconfigdir = $(libdir)/pkgconfig
56 noinst_DATA = mono-uninstalled.pc
57 DISTCLEANFILES= mono-uninstalled.pc
58
59 # building with monolite
60 mcslib = $(mcs_topdir)/class/lib
61 monolite = $(mcslib)/monolite
62 mono_corlib_version = $(shell sed -n "s/\#define MONO_CORLIB_VERSION //p" $(srcdir)/mono/metadata/appdomain.c)
63 monolite_url = http://download.mono-project.com/monolite/monolite-$(mono_corlib_version)-latest.tar.gz
64 .PHONY: get-monolite-latest 
65 get-monolite-latest:
66         -rm -fr $(mcslib)/monolite-*
67         -mkdir -p $(mcslib)
68         test ! -d $(monolite) || test ! -d $(monolite).old || rm -fr $(monolite).old
69         test ! -d $(monolite) || mv -f $(monolite) $(monolite).old
70         cd $(mcslib) && { (wget -O- $(monolite_url) || curl $(monolite_url)) | gzip -d | tar xf - ; }
71         cd $(mcslib) && mv -f monolite-* monolite
72
73 if BITCODE
74 BITCODE_CHECK=yes
75 endif
76
77 .PHONY: check-ci
78 check-ci:
79         MONO_LLVMONLY=$(BITCODE_CHECK) $(srcdir)/scripts/ci/run-test-$(TEST_PROFILE).sh
80
81 .PHONY: validate do-build-mono-mcs mcs-do-clean mcs-do-tests
82 validate: do-build-mono-mcs
83         $(MAKE) mcs-do-tests
84 do-build-mono-mcs: mcs-do-clean
85         $(MAKE) all
86 mcs-do-clean:
87         cd runtime && $(MAKE) clean-local
88         cd mono/tests && $(MAKE) clean
89 mcs-do-tests:
90         cd runtime && $(MAKE) check-local
91         cd mono/tests && $(MAKE) check
92
93 .PHONY: compiler-tests mcs-do-compiler-tests
94 compiler-tests:
95         $(MAKE) test_select='TEST_SUBDIRS="tests errors"' validate
96 mcs-do-compiler-tests:
97         $(MAKE) test_select='TEST_SUBDIRS="tests errors"' mcs-do-tests
98
99 .PHONY: bootstrap-world
100 bootstrap-world: compiler-tests
101         $(MAKE) install
102
103 if INSTALL_MONOTOUCH
104 monotouch-do-build: config.h
105         @list='$(MONOTOUCH_SUBDIRS)'; for subdir in $$list; do \
106           case "x$$subdir" in \
107                 xmono ) target="monotouch-do-build";; \
108                 * ) target="all";; \
109           esac; \
110           echo "Making $$target in $$subdir"; \
111           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
112         done;
113         (cd runtime && $(MAKE) $(AM_MAKEFLAGS) monotouch-do-build)
114
115 monotouch-do-clean:
116         @list='$(MONOTOUCH_SUBDIRS)'; for subdir in $$list; do \
117           case "x$$subdir" in \
118                 xmono ) target="monotouch-do-clean";; \
119                 * ) target="clean";; \
120           esac; \
121           echo "Making $$target in $$subdir"; \
122           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target); \
123         done;
124         (cd runtime && $(MAKE) $(AM_MAKEFLAGS) monotouch-do-clean)
125
126 endif
127
128 win32getdeps:
129         wget http://www.go-mono.com/archive/pkgconfig-0.11-20020310.zip
130         wget http://www.go-mono.com/archive/glib-2.0.4-20020703.zip 
131         wget http://www.go-mono.com/archive/glib-dev-2.0.4-20020703.zip 
132         wget http://www.go-mono.com/archive/libiconv-1.7.zip 
133         wget http://www.go-mono.com/archive/libiconv-dev-1.7.zip 
134         wget http://www.go-mono.com/archive/libintl-0.10.40-20020101.zip
135         unzip -n -d / pkgconfig-0.11-20020310.zip
136         unzip -n -d / glib-2.0.4-20020703.zip
137         unzip -n -d / glib-dev-2.0.4-20020703.zip
138         unzip -n -d / libiconv-1.7.zip
139         unzip -n -d / libiconv-dev-1.7.zip
140         unzip -n -d / libintl-0.10.40-20020101.zip
141
142 win32setup:
143         makensis /DMILESTONE=$(VERSION) /DSOURCE_INSTALL_DIR=$(SOURCE_INSTALL_DIR) /DBUILDNUM=$(BUILDNUM) monowiz.win32.nsi
144
145 update-csproj:
146         -rm msvc/scripts/order 
147         -rm msvc/scripts/order.xml
148         -rm -rf msvc/scripts/inputs
149         -mkdir msvc/scripts/inputs
150         (cd runtime; make V=1 extra_targets=csproj-local)
151
152 package-inputs:
153         echo '<?xml version="1.0" encoding="utf-8"?>' > msvc/scripts/order.xml
154         echo '<root>' >> msvc/scripts/order.xml
155         for i in `cat msvc/scripts/order`; do \
156                 set `echo $$i | sed -e 's/:/ /' -e 's/.input//'`; \
157                 cat msvc/scripts/inputs/$$2.input | sed -e 's/\\\\/\\/g' -e 's/\\/\\\\/g' | \
158                 (echo "    <project dir=\"$$1\" library=\"$$2\">"; \
159                  read boot;   echo "      <boot>$$boot</boot>"; \
160                  read flags;  echo "      <flags>$$flags</flags>"; \
161                  read output; echo "      <output>$$output</output>"; \
162                  read built;  echo "      <built_sources>`echo $$built | sed 's/\\\/\\\\/g'`</built_sources>"; \
163                  read libou;  echo "      <library_output>$$libou</library_output>"; \
164                  read fx_ver; echo "      <fx_version>$$fx_ver</fx_version>"; \
165                  read profile; echo "      <profile>$$profile</profile>"; \
166                  read resxt;  echo "      <resources>$$resxt</resources>"; \
167                  read resp;   echo "      <response>$$resp</response>"; \
168                  echo "    </project>") >> msvc/scripts/order.xml; \
169         done
170         echo "</root>" >> msvc/scripts/order.xml
171
172 # Update llvm version in configure.ac to the output of $LLVM_DIR/bin/llvm-config --version
173 update-llvm-version:
174         if test "x$$LLVM_DIR" = "x"; then echo "Set the make variable LLVM_DIR to the directory containing the LLVM installation."; exit 1; fi
175         REV=`$(LLVM_DIR)/bin/llvm-config --version` && sed -e "s,expected_llvm_version=.*,expected_llvm_version=\"$$REV\"," < configure.ac > tmp && mv tmp configure.ac && echo "Version set to $$REV."
176
177
178 update-solution-files:
179         make update-csproj
180         make package-inputs
181         (cd msvc/scripts; make genproj.exe; mono genproj.exe)