Merge pull request #3269 from alexanderkyte/silence_zero_len
[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 # If the profile is using nunit-lite, use it
120 ifdef NUNIT_LITE
121 TEST_HARNESS=$(topdir)/class/lib/$(PROFILE)/nunit-lite-console.exe
122 endif
123
124 # Make sure propagates
125 export TEST_HARNESS
126
127 # If the profile is using nunit-lite, use it
128 ifdef NUNIT_LITE
129 TEST_HARNESS=$(topdir)/class/lib/$(PROFILE)/nunit-lite-console.exe
130 endif
131
132 # Make sure propagates
133 export TEST_HARNESS
134
135 ifdef BCL_OPTIMIZE
136 PROFILE_MCS_FLAGS += -optimize
137 endif
138
139 # Design:
140 # Problem: We want to be able to build aot
141 # assemblies as part of the build system. 
142 #
143 # For this to be done safely, we really need two passes. This
144 # ensures that all of the .dlls are compiled before trying to
145 # aot them. Because we want this to be the
146 # default target for some profiles(mobile_static) we have a
147 # two-level build system. The do-all-aot target is what
148 # gets invoked at the top-level when someone tries to build with aot.
149 # It will invoke the do-all target, and will set TOP_LEVEL_DO for this
150 # recursive make call in order to prevent this recursive call from trying
151 # to build aot in each of the subdirs. After this is done, we will aot
152 # everything that our building produced by aoting everything in
153 # mcs/class/lib/$(PROFILE)/
154 ifndef TOP_LEVEL_DO
155
156 ifdef ALWAYS_AOT
157 TOP_LEVEL_DO = do-all-aot
158 else
159 TOP_LEVEL_DO = do-all
160 endif # ALWAYS_AOT
161
162 endif # !TOP_LEVEL_DO
163
164 ifdef OVERRIDE_TARGET_ALL
165 all: all.override
166 else
167 all: $(TOP_LEVEL_DO)
168 endif
169
170 ifdef NO_INSTALL
171 GACUTIL = :
172 else
173 gacutil = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/gacutil.exe
174 GACUTIL = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(gacutil)
175 endif
176
177 STD_TARGETS = test run-test run-test-ondotnet clean install uninstall doc-update
178
179 $(STD_TARGETS): %: do-%
180
181 ifdef PLATFORM_AOT_SUFFIX
182 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' ' ')
183
184 do-all-aot:
185         $(MAKE) do-all TOP_LEVEL_DO=do-all
186         $(MAKE) aot-all-profile
187
188 # When we recursively call $(MAKE) aot-all-profile
189 # we will have created this directory, and so will
190 # be able to evaluate the .dylibs to make
191 ifneq ("$(wildcard $(topdir)/class/lib/$(PROFILE))","")
192
193 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' ' '
194 AOT_PROFILE_ASSEMBLIES_CMD_SAFE = $(AOT_PROFILE_ASSEMBLIES_CMD) || true
195 AOT_PROFILE_ASSEMBLIES = $(shell $(AOT_PROFILE_ASSEMBLIES_CMD_SAFE))
196
197 # This can run in parallel
198 .PHONY: aot-all-profile
199 aot-all-profile: $(patsubst %,$(topdir)/class/lib/$(PROFILE)/%$(PLATFORM_AOT_SUFFIX),$(AOT_PROFILE_ASSEMBLIES))
200
201 $(topdir)/class/lib/$(PROFILE)/%$(PLATFORM_AOT_SUFFIX): $(topdir)/class/lib/$(PROFILE)/%
202         @ mkdir -p $(topdir)/class/lib/$(PROFILE)/$*_bitcode_tmp
203         @echo "AOT     [$(PROFILE)] AOT $* " && cd $(topdir)/class/lib/$(PROFILE)/ && MONO_PATH="." $(RUNTIME) $(RUNTIME_FLAGS) $(AOT_BUILD_FLAGS),temp-path=$*_bitcode_tmp $* >> $(PROFILE)-aot.log
204         @ rm -rf $(topdir)/class/lib/$(PROFILE)/$*_bitcode_tmp
205
206 endif #ifneq ("$(wildcard $(topdir)/class/lib/$(PROFILE))","")
207
208 endif # PLATFORM_AOT_SUFFIX
209
210 do-run-test:
211         ok=:; $(MAKE) run-test-recursive || ok=false; $(MAKE) run-test-local || ok=false; $$ok
212
213 do-%: %-recursive
214         $(MAKE) $*-local
215
216 .PHONY: all-local $(STD_TARGETS:=-local)
217 all-local $(STD_TARGETS:=-local):
218
219 csproj: do-csproj
220
221 # The way this is set up, any profile-specific subdirs list should
222 # be listed _before_ including rules.make.  However, the default
223 # SUBDIRS list can come after, so don't use the eager := syntax when
224 # using the defaults.
225 PROFILE_SUBDIRS := $($(PROFILE)_SUBDIRS)
226 ifndef PROFILE_SUBDIRS
227 PROFILE_SUBDIRS = $(SUBDIRS)
228 endif
229
230 # These subdirs can be built in parallel
231 PROFILE_PARALLEL_SUBDIRS := $($(PROFILE)_PARALLEL_SUBDIRS)
232 ifndef PROFILE_PARALLEL_SUBDIRS
233 PROFILE_PARALLEL_SUBDIRS = $(PARALLEL_SUBDIRS)
234 endif
235
236 ifndef FRAMEWORK_VERSION_MAJOR
237 FRAMEWORK_VERSION_MAJOR = $(basename $(FRAMEWORK_VERSION))
238 endif
239
240 %-recursive:
241         @set . $$MAKEFLAGS; final_exit=:; \
242         case $$2 in --unix) shift ;; esac; \
243         case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
244         list='$(PROFILE_SUBDIRS)'; for d in $$list ; do \
245             (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
246         done; \
247         if [ $* = "all" -a -n "$(PROFILE_PARALLEL_SUBDIRS)" ]; then \
248                 $(MAKE) do-all-parallel ENABLE_PARALLEL_SUBDIR_BUILD=1 || { final_exit="exit 1"; $$dk; } ; \
249         else \
250                 list='$(PROFILE_PARALLEL_SUBDIRS)'; for d in $$list ; do \
251                     (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
252                 done; \
253         fi; \
254         $$final_exit
255
256 #
257 # Parallel build support
258 #
259 # The variable $(PROFILE)_PARALLEL_SUBDIRS should be set to the list of directories
260 # which could be built in parallel. These directories are built after the directories in
261 # $(PROFILE)_SUBDIRS.
262 # Parallel building is currently only supported for the 'all' target.
263 #
264 # Each directory's Makefile may define DEP_LIBS and DEP_DIRS to specify the libraries and
265 # directories it depends on.
266 #
267 ifneq ($(PROFILE_PARALLEL_SUBDIRS),)
268 dep_dirs = .dep_dirs-$(PROFILE)
269 $(dep_dirs):
270         @echo "Creating $@..."
271         list='$(PROFILE_PARALLEL_SUBDIRS)'; \
272         echo > $@; \
273         for d in $$list; do \
274                 $(MAKE) -C $$d gen-deps DEPS_TARGET_DIR=$$d DEPS_FILE=$(abspath $@); \
275         done
276 -include $(dep_dirs)
277 endif
278
279 .PHONY: gen-deps
280 # The gen-deps target is in library.make/executable.make so it can pick up
281 # DEP_LIBS/DEP_DIRS
282
283 clean-dep-dir:
284         $(RM) $(dep_dirs)
285
286 clean-local: clean-dep-dir
287
288 ifdef ENABLE_PARALLEL_SUBDIR_BUILD
289 .PHONY: do-all-parallel $(PROFILE_PARALLEL_SUBDIRS)
290
291 do-all-parallel: $(PROFILE_PARALLEL_SUBDIRS)
292
293 $(PROFILE_PARALLEL_SUBDIRS):
294         @set . $$MAKEFLAGS; \
295         cd $@ && $(MAKE)
296 endif
297
298 ifndef DIST_SUBDIRS
299 DIST_SUBDIRS = $(SUBDIRS) $(DIST_ONLY_SUBDIRS)
300 endif
301 dist-recursive: dist-local
302         @case '$(distdir)' in [\\/$$]* | ?:[\\/]* ) reldir='$(distdir)' ;; *) reldir='../$(distdir)' ;; esac ; \
303         list='$(DIST_SUBDIRS)'; for d in $$list ; do \
304             (cd $$d && $(MAKE) distdir=$$reldir/$$d $@) || exit 1 ; \
305         done
306
307 # The following target can be used like
308 #
309 #   dist-local: dist-default
310 #       ... additional commands ...
311 #
312 # Notes:
313 #  1. we invert the test here to not end in an error if ChangeLog doesn't exist.
314 #  2. we error out if we try to dist a nonexistant file.
315 #  3. we pick up Makefile, makefile, or GNUmakefile.
316 dist-default:
317         -mkdir -p $(distdir)
318         test '!' -f ChangeLog || cp ChangeLog $(distdir)
319         if test -f Makefile; then m=M; fi; \
320         if test -f makefile; then m=m; fi; \
321         if test -f GNUmakefile; then m=GNUm; fi; \
322         for f in $${m}akefile $(DISTFILES) ; do \
323             dest=`dirname "$(distdir)/$$f"` ; \
324             $(MKINSTALLDIRS) $$dest && cp -p "$$f" $$dest || exit 1 ; \
325         done
326         if test -d Documentation ; then \
327                 find . -name '*.xml' > .files ; \
328                 tar cTf .files - | (cd $(distdir); tar xf -) ; \
329                 rm .files ; \
330         fi
331
332 %/.stamp:
333         $(MKINSTALLDIRS) $(@D)
334         touch $@
335
336 ## Documentation stuff
337
338 Q_MDOC =$(if $(V),,@echo "MDOC    [$(PROFILE)] $(notdir $(@))";)
339 MDOC   =$(Q_MDOC) MONO_PATH="$(topdir)/class/lib/$(DEFAULT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/$(DEFAULT_PROFILE)/mdoc.exe
340