Merge pull request #3913 from omwok/master
[mono.git] / mcs / build / rules.make
1 # -*- makefile -*-
2 #
3 # This is the makefile fragment with default rules
4 # for building things in MCS
5 #
6 # To customize the build, you should edit config.make.
7 # If you need to edit this file, that's a bug; email
8 # peter@newton.cx about it.
9
10 empty :=
11 space := $(empty) $(empty)
12
13 # given $(thisdir), we compute the path to the top directory
14 #
15 # split_path = $(filter-out .,$(subst /,$(space),$(1)))
16 # make_path = ./$(subst $(space),/,$(1))
17 # dotdottify = $(patsubst %,..,$(1))
18 # topdir = $(call make_path,$(call dotdottify,$(call split_path,$(thisdir))))
19 topdir := ./$(subst $(space),/,$(patsubst %,..,$(filter-out .,$(subst /,$(space),$(thisdir)))))
20
21 VERSION = 0.93
22
23 Q=$(if $(V),,@)
24 # echo -e "\\t" does not work on some systems, so use 5 spaces
25 Q_MCS=$(if $(V),,@echo "MCS     [$(intermediate)$(PROFILE)] $(notdir $(@))";)
26
27 ifndef BUILD_TOOLS_PROFILE
28 BUILD_TOOLS_PROFILE = build
29 endif
30
31 USE_MCS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MCS_FLAGS) $(PLATFORM_MCS_FLAGS) $(PROFILE_MCS_FLAGS) $(MCS_FLAGS)
32 USE_MBAS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MBAS_FLAGS) $(PLATFORM_MBAS_FLAGS) $(PROFILE_MBAS_FLAGS) $(MBAS_FLAGS)
33 USE_CFLAGS = $(LOCAL_CFLAGS) $(CFLAGS) $(CPPFLAGS)
34 CSCOMPILE = $(Q_MCS) $(MCS) $(USE_MCS_FLAGS)
35 BASCOMPILE = $(MBAS) $(USE_MBAS_FLAGS)
36 CCOMPILE = $(CC) $(USE_CFLAGS)
37 BOOT_COMPILE = $(Q_MCS) $(BOOTSTRAP_MCS) $(USE_MCS_FLAGS)
38 INSTALL = $(SHELL) $(topdir)/../mono/install-sh
39 INSTALL_DATA = $(INSTALL) -c -m 644
40 INSTALL_BIN = $(INSTALL) -c -m 755
41 INSTALL_LIB = $(INSTALL_BIN)
42 MKINSTALLDIRS = $(SHELL) $(topdir)/mkinstalldirs
43 INTERNAL_MBAS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/mbas/mbas.exe
44 INTERNAL_GMCS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/mcs.exe
45 INTERNAL_ILASM = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/ilasm.exe
46 INTERNAL_CSC = $(RUNTIME) $(RUNTIME_FLAGS) $(CSC_LOCATION)
47
48 RESGEN_EXE = $(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)resgen.exe
49 INTERNAL_RESGEN = $(RUNTIME) $(RUNTIME_FLAGS) $(RESGEN_EXE)
50 RESGEN = MONO_PATH="$(topdir)/class/lib/$(PROFILE)/$(PARENT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN)
51 STRING_REPLACER = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/cil-stringreplacer.exe
52
53 depsdir = $(topdir)/build/deps
54
55 # Make sure these propagate if set manually
56
57 export PLATFORM
58 export PROFILE
59 export MCS
60 export MCS_FLAGS
61 export CC
62 export CFLAGS
63 export INSTALL
64 export MKINSTALLDIRS
65 export BOOTSTRAP_MCS
66 export DESTDIR
67 export RESGEN
68
69 # Get this so the platform.make platform-check rule doesn't become the
70 # default target
71
72 .DEFAULT: all
73 default: all
74
75 # Get initial configuration. pre-config is so that the builder can
76 # override PLATFORM or PROFILE
77
78 include $(topdir)/build/config-default.make
79 -include $(topdir)/build/pre-config.make
80 -include $(topdir)/build/config.make
81
82 # Default PLATFORM and PROFILE if they're not already defined.
83
84 ifndef PLATFORM
85 ifeq ($(OS),Windows_NT)
86 ifneq ($(V),)
87 $(info *** Assuming PLATFORM is 'win32'.)
88 endif
89 PLATFORM = win32
90 else
91 ifneq ($(V),)
92 $(info *** Assuming PLATFORM is 'linux'.)
93 endif
94 PLATFORM = linux
95 endif
96 endif
97
98 # Platform config
99
100 include $(topdir)/build/platforms/$(PLATFORM).make
101
102 ifdef PLATFORM_CORLIB
103 corlib = $(PLATFORM_CORLIB)
104 endif
105 # Useful
106
107 ifeq ($(PLATFORM_RUNTIME),$(RUNTIME))
108 PLATFORM_MONO_NATIVE = yes
109 endif
110
111 # Rest of the configuration
112
113 ifndef PROFILE
114 PROFILE = $(DEFAULT_PROFILE)
115 endif
116
117 include $(topdir)/build/profiles/$(PROFILE).make
118
119 ifdef BCL_OPTIMIZE
120 PROFILE_MCS_FLAGS += -optimize
121 endif
122
123 # Design:
124 # Problem: We want to be able to build aot
125 # assemblies as part of the build system. 
126 #
127 # For this to be done safely, we really need two passes. This
128 # ensures that all of the .dlls are compiled before trying to
129 # aot them. Because we want this to be the
130 # default target for some profiles(mobile_static) we have a
131 # two-level build system. The do-all-aot target is what
132 # gets invoked at the top-level when someone tries to build with aot.
133 # It will invoke the do-all target, and will set TOP_LEVEL_DO for this
134 # recursive make call in order to prevent this recursive call from trying
135 # to build aot in each of the subdirs. After this is done, we will aot
136 # everything that our building produced by aoting everything in
137 # mcs/class/lib/$(PROFILE)/
138 ifndef TOP_LEVEL_DO
139
140 ifdef ALWAYS_AOT
141 TOP_LEVEL_DO = do-all-aot
142 else
143 TOP_LEVEL_DO = do-all
144 endif # ALWAYS_AOT
145
146 endif # !TOP_LEVEL_DO
147
148 ifdef OVERRIDE_TARGET_ALL
149 all: all.override
150 else
151 all: $(TOP_LEVEL_DO)
152 endif
153
154 ifdef NO_INSTALL
155 GACUTIL = :
156 else
157 gacutil = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/gacutil.exe
158 GACUTIL = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(gacutil)
159 endif
160
161 STD_TARGETS = test run-test run-test-ondotnet clean install uninstall doc-update
162
163 $(STD_TARGETS): %: do-%
164
165 ifdef PLATFORM_AOT_SUFFIX
166 AOT_PROFILE_ASSEMBLIES = $(shell cd $(topdir)/class/lib/$(PROFILE)/ && find . | grep -E '(dll|exe)$$' | grep -v -E 'bare|plaincore|secxml|Facades' | sed 's:\./::g' | tr '\n' ' ')
167
168 do-all-aot:
169         $(MAKE) do-all TOP_LEVEL_DO=do-all
170         $(MAKE) aot-all-profile
171
172 # When we recursively call $(MAKE) aot-all-profile
173 # we will have created this directory, and so will
174 # be able to evaluate the .dylibs to make
175 ifneq ("$(wildcard $(topdir)/class/lib/$(PROFILE))","")
176
177 AOT_PROFILE_ASSEMBLIES_CMD = cd $(topdir)/class/lib/$(PROFILE)/ && find . | grep -E '(dll|exe)$$' | grep -v -E 'bare|plaincore|secxml|Facades|ilasm' | sed 's:\./::g' | tr '\n' ' '
178 AOT_PROFILE_ASSEMBLIES_CMD_SAFE = $(AOT_PROFILE_ASSEMBLIES_CMD) || true
179 AOT_PROFILE_ASSEMBLIES = $(shell $(AOT_PROFILE_ASSEMBLIES_CMD_SAFE))
180
181 # This can run in parallel
182 .PHONY: aot-all-profile
183 aot-all-profile: $(patsubst %,$(topdir)/class/lib/$(PROFILE)/%$(PLATFORM_AOT_SUFFIX),$(AOT_PROFILE_ASSEMBLIES))
184
185 $(topdir)/class/lib/$(PROFILE)/%$(PLATFORM_AOT_SUFFIX): $(topdir)/class/lib/$(PROFILE)/%
186         @ mkdir -p $(topdir)/class/lib/$(PROFILE)/$*_bitcode_tmp
187         @echo "AOT     [$(PROFILE)] AOT $* " && cd $(topdir)/class/lib/$(PROFILE)/ && MONO_PATH="." $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$*_bitcode_tmp $* >> $(PROFILE)-aot.log
188         @ rm -rf $(topdir)/class/lib/$(PROFILE)/$*_bitcode_tmp
189
190 endif #ifneq ("$(wildcard $(topdir)/class/lib/$(PROFILE))","")
191
192 endif # PLATFORM_AOT_SUFFIX
193
194 do-run-test:
195         ok=:; $(MAKE) run-test-recursive || ok=false; $(MAKE) run-test-local || ok=false; $$ok
196
197 do-%: %-recursive
198         $(MAKE) $*-local
199
200 .PHONY: all-local $(STD_TARGETS:=-local)
201 all-local $(STD_TARGETS:=-local):
202
203 csproj: do-csproj
204
205 # The way this is set up, any profile-specific subdirs list should
206 # be listed _before_ including rules.make.  However, the default
207 # SUBDIRS list can come after, so don't use the eager := syntax when
208 # using the defaults.
209 PROFILE_SUBDIRS := $($(PROFILE)_SUBDIRS)
210 ifndef PROFILE_SUBDIRS
211 PROFILE_SUBDIRS = $(SUBDIRS)
212 endif
213
214 # These subdirs can be built in parallel
215 PROFILE_PARALLEL_SUBDIRS := $($(PROFILE)_PARALLEL_SUBDIRS)
216 ifndef PROFILE_PARALLEL_SUBDIRS
217 PROFILE_PARALLEL_SUBDIRS = $(PARALLEL_SUBDIRS)
218 endif
219
220 ifndef FRAMEWORK_VERSION_MAJOR
221 FRAMEWORK_VERSION_MAJOR = $(basename $(FRAMEWORK_VERSION))
222 endif
223
224 %-recursive:
225         @set . $$MAKEFLAGS; final_exit=:; \
226         case $$2 in --unix) shift ;; esac; \
227         case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
228         list='$(PROFILE_SUBDIRS)'; for d in $$list ; do \
229             (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
230         done; \
231         if [ $* = "all" -a -n "$(PROFILE_PARALLEL_SUBDIRS)" ]; then \
232                 $(MAKE) do-all-parallel ENABLE_PARALLEL_SUBDIR_BUILD=1 || { final_exit="exit 1"; $$dk; } ; \
233         else \
234                 list='$(PROFILE_PARALLEL_SUBDIRS)'; for d in $$list ; do \
235                     (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
236                 done; \
237         fi; \
238         $$final_exit
239
240 #
241 # Parallel build support
242 #
243 # The variable $(PROFILE)_PARALLEL_SUBDIRS should be set to the list of directories
244 # which could be built in parallel. These directories are built after the directories in
245 # $(PROFILE)_SUBDIRS.
246 # Parallel building is currently only supported for the 'all' target.
247 #
248 # Each directory's Makefile may define DEP_LIBS and DEP_DIRS to specify the libraries and
249 # directories it depends on.
250 #
251 ifneq ($(PROFILE_PARALLEL_SUBDIRS),)
252 dep_dirs = .dep_dirs-$(PROFILE)
253 $(dep_dirs):
254         @echo "Creating $@..."
255         list='$(PROFILE_PARALLEL_SUBDIRS)'; \
256         echo > $@; \
257         for d in $$list; do \
258                 $(MAKE) -C $$d gen-deps DEPS_TARGET_DIR=$$d DEPS_FILE=$(abspath $@); \
259         done
260 -include $(dep_dirs)
261 endif
262
263 .PHONY: gen-deps
264 # The gen-deps target is in library.make/executable.make so it can pick up
265 # DEP_LIBS/DEP_DIRS
266
267 clean-dep-dir:
268         $(RM) $(dep_dirs)
269
270 clean-local: clean-dep-dir
271
272 ifdef ENABLE_PARALLEL_SUBDIR_BUILD
273 .PHONY: do-all-parallel $(PROFILE_PARALLEL_SUBDIRS)
274
275 do-all-parallel: $(PROFILE_PARALLEL_SUBDIRS)
276
277 $(PROFILE_PARALLEL_SUBDIRS):
278         @set . $$MAKEFLAGS; \
279         cd $@ && $(MAKE)
280 endif
281
282 ifndef DIST_SUBDIRS
283 DIST_SUBDIRS = $(SUBDIRS) $(DIST_ONLY_SUBDIRS)
284 endif
285 dist-recursive: dist-local
286         @case '$(distdir)' in [\\/$$]* | ?:[\\/]* ) reldir='$(distdir)' ;; *) reldir='../$(distdir)' ;; esac ; \
287         list='$(DIST_SUBDIRS)'; for d in $$list ; do \
288             (cd $$d && $(MAKE) distdir=$$reldir/$$d $@) || exit 1 ; \
289         done
290
291 # The following target can be used like
292 #
293 #   dist-local: dist-default
294 #       ... additional commands ...
295 #
296 # Notes:
297 #  1. we invert the test here to not end in an error if ChangeLog doesn't exist.
298 #  2. we error out if we try to dist a nonexistant file.
299 #  3. we pick up Makefile, makefile, or GNUmakefile.
300 dist-default:
301         -mkdir -p $(distdir)
302         test '!' -f ChangeLog || cp ChangeLog $(distdir)
303         if test -f Makefile; then m=M; fi; \
304         if test -f makefile; then m=m; fi; \
305         if test -f GNUmakefile; then m=GNUm; fi; \
306         for f in $${m}akefile $(DISTFILES) ; do \
307             dest=`dirname "$(distdir)/$$f"` ; \
308             $(MKINSTALLDIRS) $$dest && cp -p "$$f" $$dest || exit 1 ; \
309         done
310         if test -d Documentation ; then \
311                 find . -name '*.xml' > .files ; \
312                 tar cTf .files - | (cd $(distdir); tar xf -) ; \
313                 rm .files ; \
314         fi
315
316 %/.stamp:
317         $(MKINSTALLDIRS) $(@D)
318         touch $@
319
320 ## Documentation stuff
321
322 Q_MDOC =$(if $(V),,@echo "MDOC    [$(PROFILE)] $(notdir $(@))";)
323 MDOC   =$(Q_MDOC) MONO_PATH="$(topdir)/class/lib/$(DEFAULT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/$(DEFAULT_PROFILE)/mdoc.exe
324