Add new profile for monodroid tools (#5699)
[mono.git] / mcs / build / library.make
1 # -*- makefile -*-
2 #
3 # The rules for building our class libraries.
4 #
5 # The NO_TEST stuff is not too pleasant but whatcha
6 # gonna do.
7
8 # All the dep files now land in the same directory so we
9 # munge in the library name to keep the files from clashing.
10
11 # The including makefile can set the following variables:
12 # LIB_MCS_FLAGS - Command line flags passed to mcs.
13 # LIB_REFS      - This should be a space separated list of assembly names which are added to the mcs
14 #                 command line.
15 #
16
17 # All dependent libs become dependent dirs for parallel builds
18 # Have to rename to handle differences between assembly/directory names
19 DEP_LIBS=$(patsubst System.Xml,System.XML,$(LIB_REFS))
20
21 LIB_REFS_FULL = $(call _FILTER_OUT,=, $(LIB_REFS))
22 LIB_REFS_ALIAS = $(filter-out $(LIB_REFS_FULL),$(LIB_REFS))
23
24 ifdef TARGET_NET_REFERENCE
25 # System.*.dll references come from the TARGET_NET_REFERENCE dir, others from the profile dir
26 LIB_REFS_MONO_FULL = $(call _FILTER_OUT,System,$(LIB_REFS_FULL))
27 LIB_REFS_MONO_ALIAS = $(call _FILTER_OUT,System,$(LIB_REFS_ALIAS))
28
29 LIB_REFS_SYSTEM_FULL = $(filter-out $(LIB_REFS_MONO_FULL),$(LIB_REFS_FULL))
30 LIB_REFS_SYSTEM_ALIAS = $(filter-out $(LIB_REFS_MONO_ALIAS),$(LIB_REFS_ALIAS))
31
32 LIB_MCS_FLAGS += $(patsubst %,-r:$(topdir)/../external/binary-reference-assemblies/$(TARGET_NET_REFERENCE)/%.dll,$(LIB_REFS_SYSTEM_FULL))
33 LIB_MCS_FLAGS += $(patsubst %,-r:%.dll, $(subst =,=$(topdir)/../external/binary-reference-assemblies/$(TARGET_NET_REFERENCE)/,$(LIB_REFS_SYSTEM_ALIAS)))
34
35 LIB_MCS_FLAGS += $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE_DIRECTORY)/%.dll,$(LIB_REFS_MONO_FULL))
36 LIB_MCS_FLAGS += $(patsubst %,-r:%.dll, $(subst =,=$(topdir)/class/lib/$(PROFILE_DIRECTORY)/,$(LIB_REFS_MONO_ALIAS)))
37 else
38 LIB_MCS_FLAGS += $(patsubst %,-r:$(topdir)/class/lib/$(PROFILE_DIRECTORY)/%.dll,$(LIB_REFS_FULL))
39 LIB_MCS_FLAGS += $(patsubst %,-r:%.dll, $(subst =,=$(topdir)/class/lib/$(PROFILE_DIRECTORY)/,$(LIB_REFS_ALIAS)))
40 endif
41
42 ifdef KEYFILE
43 KEYFILE_MCS_FLAGS += /keyfile:$(KEYFILE)
44 endif
45
46 ifndef LIBRARY_NAME
47 LIBRARY_NAME = $(LIBRARY)
48 endif
49
50 ifdef LIBRARY_COMPAT
51 lib_dir = compat
52 else
53 lib_dir = lib
54 endif
55
56 the_libdir_base = $(topdir)/class/$(lib_dir)/$(PROFILE_DIRECTORY)/$(if $(LIBRARY_SUBDIR),$(LIBRARY_SUBDIR)/)
57
58 ifdef RESOURCE_STRINGS
59 ifneq (basic, $(PROFILE))
60 RESOURCE_STRINGS_FILES += $(RESOURCE_STRINGS:%=--resourcestrings:%)
61 endif
62 endif
63
64 #
65 # The bare directory contains the plain versions of System and System.Xml
66 #
67 bare_libdir = $(the_libdir_base)bare
68
69 #
70 # The secxml directory contains the System version that depends on 
71 # System.Xml and Mono.Security
72 #
73 secxml_libdir = $(the_libdir_base)secxml
74
75 the_libdir = $(the_libdir_base)$(intermediate)
76
77 ifdef LIBRARY_USE_INTERMEDIATE_FILE
78 build_libdir = $(the_libdir)tmp/
79 else
80 build_libdir = $(the_libdir)
81 endif
82
83 the_lib   = $(the_libdir)$(LIBRARY_NAME)
84 build_lib = $(build_libdir)$(LIBRARY_NAME)
85 library_CLEAN_FILES += $(the_lib)   $(the_lib).so   $(the_lib).mdb   $(the_lib:.dll=.pdb)
86 library_CLEAN_FILES += $(build_lib) $(build_lib).so $(build_lib).mdb $(build_lib:.dll=.pdb)
87
88 ifdef NO_SIGN_ASSEMBLY
89 SN = :
90 else
91 ifeq ("$(SN)","")
92 sn = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/sn.exe
93 SN = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(sn) -q
94 endif
95 endif
96
97 ifeq ($(BUILD_PLATFORM), win32)
98 GACDIR = `cygpath -w $(mono_libdir)`
99 GACROOT = `cygpath -w $(DESTDIR)$(mono_libdir)`
100 test_flags += -d:WINDOWS
101 else
102 GACDIR = $(mono_libdir)
103 GACROOT = $(DESTDIR)$(mono_libdir)
104 endif
105
106 ifndef NO_BUILD
107 all-local: $(the_lib) $(extra_targets)
108 endif
109
110 ifeq ($(LIBRARY_COMPILE),$(BOOT_COMPILE))
111 is_boot=true
112 else
113 is_boot=false
114 endif
115
116 csproj-local: csproj-library csproj-test
117
118 intermediate_clean=$(subst /,-,$(intermediate))
119 csproj-library:
120         config_file=`basename $(LIBRARY) .dll`-$(intermediate_clean)$(PROFILE).input; \
121         case "$(thisdir)" in *"Facades"*) config_file=Facades_$$config_file;; *"legacy"*) config_file=legacy_$$config_file;; esac; \
122         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
123         (echo $(is_boot); \
124         echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS) $(KEYFILE_MCS_FLAGS); \
125         echo $(LIBRARY_NAME); \
126         echo $(BUILT_SOURCES_cmdline); \
127         echo $(build_lib); \
128         echo $(FRAMEWORK_VERSION); \
129         echo $(PROFILE); \
130         echo $(RESOURCE_DEFS); \
131         echo $(response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
132
133 csproj-test:
134
135 install-local: all-local
136 test-local: all-local
137 uninstall-local:
138
139 ifdef NO_INSTALL
140 install-local uninstall-local:
141         @:
142
143 else
144
145 aot_lib = $(the_lib)$(PLATFORM_AOT_SUFFIX)
146 aot_libname = $(LIBRARY_NAME)$(PLATFORM_AOT_SUFFIX)
147
148 ifdef LIBRARY_INSTALL_DIR
149 install-local:
150         $(MKINSTALLDIRS) $(DESTDIR)$(LIBRARY_INSTALL_DIR)
151         $(INSTALL_LIB) $(the_lib) $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME)
152         test ! -f $(the_lib).mdb || $(INSTALL_LIB) $(the_lib).mdb $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME).mdb
153         test ! -f $(the_lib:.dll=.pdb) || $(INSTALL_LIB) $(the_lib:.dll=.pdb) $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME:.dll=.pdb)
154
155 ifdef PLATFORM_AOT_SUFFIX
156         test ! -f $(aot_lib) || $(INSTALL_LIB) $(aot_lib) $(DESTDIR)$(LIBRARY_INSTALL_DIR)
157 endif
158
159 uninstall-local:
160         -rm -f $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME) $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME).mdb $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME:.dll=.pdb)
161
162 else
163
164 # If RUNTIME_HAS_CONSISTENT_GACDIR is set, it implies that the internal GACDIR
165 # of the runtime is the same as the GACDIR we want.  So, we don't need to pass it
166 # to gacutil.  Note that the GACDIR we want may not be the same as the value of
167 # GACDIR set above, since the user could have overridden the value of $(prefix).
168 #
169 # This makes a difference only when we're building from the mono/ tree, since we
170 # have to ensure that the internal GACDIR of the in-tree runtime matches where we
171 # install the DLLs.
172
173 ifndef RUNTIME_HAS_CONSISTENT_GACDIR
174 gacdir_flag = /gacdir $(GACDIR)
175 endif
176
177 ifndef LIBRARY_PACKAGE
178 ifdef LIBRARY_COMPAT
179 LIBRARY_PACKAGE = compat-$(FRAMEWORK_VERSION)
180 else
181 LIBRARY_PACKAGE = $(FRAMEWORK_VERSION)
182 endif
183 endif
184
185 ifneq (none, $(LIBRARY_PACKAGE))
186 package_flag = /package $(LIBRARY_PACKAGE)
187 endif
188
189 install-local: $(gacutil)
190         $(GACUTIL) /i $(the_lib) /f $(gacdir_flag) /root $(GACROOT) $(package_flag)
191
192 uninstall-local: $(gacutil)
193         -$(GACUTIL) /u $(LIBRARY_NAME:.dll=) $(gacdir_flag) /root $(GACROOT) $(package_flag)
194
195 endif # LIBRARY_INSTALL_DIR
196 endif # NO_INSTALL
197
198 clean-local:
199         -rm -f $(tests_CLEAN_FILES) $(library_CLEAN_FILES) $(CLEAN_FILES)
200
201 test-local run-test-local run-test-ondotnet-local:
202         @:
203
204 #
205 # RESOURCES_DEFS is a list of ID,FILE pairs separated by spaces
206 # for each of those, generate a rule that produces ID.resource from
207 # FILE using the resgen tool, adds the generated file to CLENA_FILES and
208 # passes the resource to the compiler
209 #
210 ccomma = ,
211 define RESOURCE_template
212 $(1).resources: $(2)
213         $(RESGEN) "$$<" "$$@"
214
215 GEN_RESOURCE_DEPS += $(1).resources
216 GEN_RESOURCE_FLAGS += -resource:$(1).resources
217 CLEAN_FILES += $(1).resources
218 DIST_LISTED_RESOURCES += $(2)
219 endef
220
221 ifdef RESOURCE_DEFS
222 $(foreach pair,$(RESOURCE_DEFS), $(eval $(call RESOURCE_template,$(word 1, $(subst $(ccomma), ,$(pair))), $(word 2, $(subst $(ccomma), ,$(pair))))))
223 endif
224
225 DISTFILES = $(wildcard *$(LIBRARY)*.sources) $(EXTRA_DISTFILES) $(DIST_LISTED_RESOURCES)
226
227 ASSEMBLY      = $(LIBRARY)
228 ASSEMBLY_EXT  = .dll
229 the_assembly  = $(the_lib)
230 include $(topdir)/build/tests.make
231
232 ifdef HAVE_CS_TESTS
233 DISTFILES += $(test_sourcefile)
234
235 csproj-test:
236         config_file=`basename $(LIBRARY) .dll`-tests-$(PROFILE).input; \
237         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
238         (echo false; \
239         echo $(USE_MCS_FLAGS) -r:$(the_assembly) $(TEST_MCS_FLAGS); \
240         echo $(test_lib); \
241         echo $(BUILT_SOURCES_cmdline); \
242         echo $(test_lib); \
243         echo $(FRAMEWORK_VERSION); \
244         echo $(PROFILE); \
245         echo ""; \
246         echo $(test_response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
247
248 endif
249
250 # make dist will collect files in .sources files from all profiles
251 dist-local: dist-default
252         subs=' ' ; \
253         for f in `$(topdir)/tools/removecomments.sh $(filter-out $(wildcard *_test.dll.sources) $(wildcard *_xtest.dll.sources) $(wildcard *exclude.sources),$(wildcard *.sources))` $(TEST_FILES) ; do \
254           case $$f in \
255           ../*) : ;; \
256           *.g.cs) : ;; \
257           *) dest=`dirname "$$f"` ; \
258              case $$subs in *" $$dest "*) : ;; *) subs=" $$dest$$subs" ; $(MKINSTALLDIRS) $(distdir)/$$dest ;; esac ; \
259              cp -p "$$f" $(distdir)/$$dest || exit 1 ;; \
260           esac ; done ; \
261         for d in . $$subs ; do \
262           case $$d in .) : ;; *) test ! -f $$d/ChangeLog || cp -p $$d/ChangeLog $(distdir)/$$d ;; esac ; done
263
264 ifndef LIBRARY_COMPILE
265 LIBRARY_COMPILE = $(CSCOMPILE)
266 endif
267
268 ifndef LIBRARY_SNK
269 LIBRARY_SNK = $(topdir)/class/mono.snk
270 endif
271
272 ifdef BUILT_SOURCES
273 library_CLEAN_FILES += $(BUILT_SOURCES)
274 ifeq (cat, $(PLATFORM_CHANGE_SEPARATOR_CMD))
275 BUILT_SOURCES_cmdline = $(BUILT_SOURCES)
276 else
277 BUILT_SOURCES_cmdline = `echo $(BUILT_SOURCES) | $(PLATFORM_CHANGE_SEPARATOR_CMD)`
278 endif
279 endif
280
281 # The library
282
283 # If the directory contains the per profile include file, generate list file.
284 PROFILE_sources := $(firstword $(if $(PROFILE_PLATFORM),$(wildcard $(PROFILE_PLATFORM)_$(PROFILE)_$(LIBRARY).sources)) $(wildcard $(PROFILE)_$(LIBRARY).sources) $(wildcard $(LIBRARY).sources))
285 PROFILE_excludes = $(firstword $(if $(PROFILE_PLATFORM),$(wildcard $(PROFILE_PLATFORM)_$(PROFILE)_$(LIBRARY).exclude.sources)) $(wildcard $(PROFILE)_$(LIBRARY).exclude.sources))
286
287 # Note, gensources.sh can create a $(sourcefile).makefrag if it sees any '#include's
288 # We don't include it in the dependencies since it isn't always created
289 sourcefile = $(depsdir)/$(PROFILE_PLATFORM)_$(PROFILE)_$(LIBRARY_SUBDIR)_$(LIBRARY).sources
290 $(sourcefile): $(PROFILE_sources) $(PROFILE_excludes) $(topdir)/build/gensources.sh $(depsdir)/.stamp
291         $(SHELL) $(topdir)/build/gensources.sh $@ '$(PROFILE_sources)' '$(PROFILE_excludes)'
292
293 library_CLEAN_FILES += $(sourcefile)
294
295 response = $(depsdir)/$(PROFILE_PLATFORM)_$(PROFILE)_$(LIBRARY_SUBDIR)_$(LIBRARY).response
296 $(response): $(sourcefile) $(topdir)/build/library.make $(depsdir)/.stamp
297         $(PLATFORM_CHANGE_SEPARATOR_CMD) <$(sourcefile) >$@
298
299 library_CLEAN_FILES += $(response)
300
301 makefrag = $(depsdir)/$(PROFILE_PLATFORM)_$(PROFILE)_$(LIBRARY_SUBDIR)_$(LIBRARY).makefrag
302 $(makefrag): $(sourcefile) $(topdir)/build/library.make $(depsdir)/.stamp
303 #       @echo Creating $@ ...
304         @sed 's,^,$(build_lib): ,' $< >$@
305         @if test ! -f $(sourcefile).makefrag; then :; else \
306            cat $(sourcefile).makefrag >> $@ ; \
307            echo '$@: $(sourcefile).makefrag' >> $@; \
308            echo '$(sourcefile).makefrag:' >> $@; fi
309
310 library_CLEAN_FILES += $(makefrag)
311
312 ifndef NO_BUILD
313 all-local: $(makefrag)
314 endif
315
316 -include $(makefrag)
317
318 $(the_lib): $(the_libdir)/.stamp $(if $(PROFILE_PLATFORM),$(if $(filter $(HOST_PLATFORM),$(BUILD_PLATFORM)),$(topdir)/class/$(lib_dir)/$(PROFILE)/.stamp))
319
320 ifdef PROFILE_PLATFORM
321 $(topdir)/class/$(lib_dir)/$(PROFILE)/.stamp: | $(topdir)/class/$(lib_dir)/$(PROFILE)-$(HOST_PLATFORM)/.stamp
322         $(if $(filter $(HOST_PLATFORM),$(BUILD_PLATFORM)),$(if $(filter $(BUILD_PLATFORM),win32),CYGWIN=winsymlinks:nativestrict) ln -s $(abspath $(topdir)/class/$(lib_dir)/$(PROFILE)-$(BUILD_PLATFORM)) $(abspath $(topdir)/class/$(lib_dir)/$(PROFILE)))
323 endif
324
325 ifndef NO_BUILD
326
327 $(build_lib): $(response) $(sn) $(BUILT_SOURCES) $(build_libdir)/.stamp $(GEN_RESOURCE_DEPS)
328         $(LIBRARY_COMPILE) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS) $(KEYFILE_MCS_FLAGS) $(GEN_RESOURCE_FLAGS) -target:library -out:$@ $(BUILT_SOURCES_cmdline) @$(response)
329 ifdef RESOURCE_STRINGS_FILES
330         $(Q) $(STRING_REPLACER) $(RESOURCE_STRINGS_FILES) $@
331 endif
332         $(Q) $(SN) -R $@ $(LIBRARY_SNK)
333
334 ifdef LIBRARY_USE_INTERMEDIATE_FILE
335 $(the_lib): $(build_lib)
336         $(Q) cp $(build_lib) $@
337         $(Q) $(SN) -v $@
338         $(Q) test ! -f $(build_lib).mdb || mv $(build_lib).mdb $@.mdb
339         $(Q) test ! -f $(build_lib:.dll=.pdb) || mv $(build_lib:.dll=.pdb) $(the_lib:.dll=.pdb)
340 endif
341
342 endif
343
344 library_CLEAN_FILES += $(PROFILE)_$(LIBRARY_NAME)_aot.log
345
346 ifdef PLATFORM_AOT_SUFFIX
347 $(the_lib)$(PLATFORM_AOT_SUFFIX): $(the_lib)
348         $(Q_AOT) MONO_PATH='$(the_libdir_base)' > $(PROFILE)_$(LIBRARY_NAME)_aot.log 2>&1 $(RUNTIME) $(AOT_BUILD_FLAGS) --debug $(the_lib)
349
350 all-local-aot: $(the_lib)$(PLATFORM_AOT_SUFFIX)
351 endif
352
353 # for now, don't give any /lib flags or set MONO_PATH, since we
354 # give a full path to the assembly.
355
356 ## Include corcompare stuff
357 include $(topdir)/build/corcompare.make
358
359 ifndef NO_BUILD
360 all-local: $(test_makefrag) $(btest_makefrag)
361 endif
362
363 $(test_response) $(test_makefrag) $(btest_response) $(btest_makefrag): $(topdir)/build/library.make $(depsdir)/.stamp
364
365 ## Documentation stuff
366
367 doc-update-local: $(the_libdir)/.doc-stamp
368
369 $(the_libdir)/.doc-stamp: $(the_lib)
370         $(MDOC_UP) $(the_lib)
371         @echo "doc-stamp" > $@
372
373 # Need to be here so it comes after the definition of DEP_DIRS/DEP_LIBS
374 gen-deps:
375         @echo "$(DEPS_TARGET_DIR): $(DEP_DIRS) $(DEP_LIBS)" >> $(DEPS_FILE)
376
377 update-corefx-sr: $(RESX_RESOURCE_STRING)
378         MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/resx2sr.exe $(RESX_RESOURCE_STRING) >corefx/SR.cs