[System] UriKind.RelativeOrAbsolute workaround.
[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_MCS_FLAGS += $(patsubst %,-r:%,$(LIB_REFS))
22
23 sourcefile = $(LIBRARY).sources
24
25 # If the directory contains the per profile include file, generate list file.
26 PROFILE_sources := $(wildcard $(PROFILE)_$(LIBRARY).sources)
27 ifdef PROFILE_sources
28 PROFILE_excludes = $(wildcard $(PROFILE)_$(LIBRARY).exclude.sources)
29 sourcefile = $(depsdir)/$(PROFILE)_$(LIBRARY).sources
30 library_CLEAN_FILES += $(sourcefile)
31
32 ifdef EXTENSION_MODULE
33 EXTENSION_include = $(wildcard $(topdir)/../../mono-extensions/mcs/$(thisdir)/$(PROFILE)_$(LIBRARY).sources)
34 else
35 EXTENSION_include = $(wildcard $(PROFILE)_opt_$(LIBRARY).sources)
36 endif
37
38
39 ifdef EXTENSION_MODULE
40 EXTENSION_exclude = $(wildcard $(topdir)/../../mono-extensions/mcs/$(thisdir)/$(PROFILE)_$(LIBRARY).exclude.sources)
41 else
42 EXTENSION_exclude = $(wildcard $(PROFILE)_opt_$(LIBRARY).exclude.sources)
43 endif
44
45 # Note, gensources.sh can create a $(sourcefile).makefrag if it sees any '#include's
46 # We don't include it in the dependencies since it isn't always created
47 $(sourcefile): $(PROFILE_sources) $(PROFILE_excludes) $(topdir)/build/gensources.sh $(EXTENSION_include)
48         @echo Creating the per profile list $@ ...
49         $(SHELL) $(topdir)/build/gensources.sh $@ '$(PROFILE_sources)' '$(PROFILE_excludes)' '$(EXTENSION_include)' '$(EXTENSION_exclude)'
50 endif
51
52 PLATFORM_excludes := $(wildcard $(LIBRARY).$(PLATFORM)-excludes)
53
54 ifndef PLATFORM_excludes
55 ifeq (cat,$(PLATFORM_CHANGE_SEPARATOR_CMD))
56 response = $(sourcefile)
57 endif
58 endif
59
60 ifndef response
61 response = $(depsdir)/$(PROFILE)_$(LIBRARY).response
62 library_CLEAN_FILES += $(response)
63 endif
64
65 ifndef LIBRARY_NAME
66 LIBRARY_NAME = $(LIBRARY)
67 endif
68
69 ifdef LIBRARY_COMPAT
70 lib_dir = compat
71 else
72 lib_dir = lib
73 endif
74
75 ifdef LIBRARY_SUBDIR
76 the_libdir_base = $(topdir)/class/$(lib_dir)/$(PROFILE)/$(LIBRARY_SUBDIR)/
77 else
78 the_libdir_base = $(topdir)/class/$(lib_dir)/$(PROFILE)/
79 endif
80
81 ifdef RESOURCE_STRINGS
82 ifdef BOOTSTRAP_PROFILE
83 MCS_FLAGS_RESOURCE_STRINGS += $(RESOURCE_STRINGS:%=--getresourcestrings:%)
84 endif
85 endif
86
87 #
88 # The bare directory contains the plain versions of System and System.Xml
89 #
90 bare_libdir = $(the_libdir_base)bare
91
92 #
93 # The secxml directory contains the System version that depends on 
94 # System.Xml and Mono.Security
95 #
96 secxml_libdir = $(the_libdir_base)secxml
97
98 the_libdir = $(the_libdir_base)$(intermediate)
99
100 ifdef LIBRARY_USE_INTERMEDIATE_FILE
101 build_libdir = $(the_libdir)tmp/
102 else
103 build_libdir = $(the_libdir)
104 endif
105
106 the_lib   = $(the_libdir)$(LIBRARY_NAME)
107 build_lib = $(build_libdir)$(LIBRARY_NAME)
108 library_CLEAN_FILES += $(the_lib)   $(the_lib).so   $(the_lib).mdb   $(the_lib:.dll=.pdb)
109 library_CLEAN_FILES += $(build_lib) $(build_lib).so $(build_lib).mdb $(build_lib:.dll=.pdb)
110
111 ifdef NO_SIGN_ASSEMBLY
112 SN = :
113 else
114 ifeq ("$(SN)","")
115 sn = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/sn.exe
116 SN = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(sn) -q
117 endif
118 endif
119
120 ifeq ($(PLATFORM), win32)
121 GACDIR = `cygpath -w $(mono_libdir)`
122 GACROOT = `cygpath -w $(DESTDIR)$(mono_libdir)`
123 test_flags += -d:WINDOWS
124 else
125 GACDIR = $(mono_libdir)
126 GACROOT = $(DESTDIR)$(mono_libdir)
127 endif
128
129 ifndef NO_BUILD
130 all-local: $(the_lib) $(extra_targets)
131 endif
132
133 ifeq ($(LIBRARY_COMPILE),$(BOOT_COMPILE))
134 is_boot=true
135 else
136 is_boot=false
137 endif
138
139 csproj-local: csproj-library csproj-test
140
141 intermediate_clean=$(subst /,-,$(intermediate))
142 csproj-library: 
143         config_file=`basename $(LIBRARY) .dll`-$(intermediate_clean)$(PROFILE).input; \
144         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
145         (echo $(is_boot); \
146         echo $(USE_MCS_FLAGS) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS); \
147         echo $(LIBRARY_NAME); \
148         echo $(BUILT_SOURCES_cmdline); \
149         echo $(build_lib); \
150         echo $(FRAMEWORK_VERSION); \
151         echo $(PROFILE); \
152         echo $(response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
153
154 csproj-test:
155
156 install-local: all-local
157 test-local: all-local
158 uninstall-local:
159
160 ifdef NO_INSTALL
161 install-local uninstall-local:
162         @:
163
164 else
165
166 aot_lib = $(the_lib)$(PLATFORM_AOT_SUFFIX)
167 aot_libname = $(LIBRARY_NAME)$(PLATFORM_AOT_SUFFIX)
168
169 ifdef LIBRARY_INSTALL_DIR
170 install-local:
171         $(MKINSTALLDIRS) $(DESTDIR)$(LIBRARY_INSTALL_DIR)
172         $(INSTALL_LIB) $(the_lib) $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME)
173         test ! -f $(the_lib).mdb || $(INSTALL_LIB) $(the_lib).mdb $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME).mdb
174 ifdef PLATFORM_AOT_SUFFIX
175         test ! -f $(aot_lib) || $(INSTALL_LIB) $(aot_lib) $(DESTDIR)$(LIBRARY_INSTALL_DIR)
176 endif
177
178 uninstall-local:
179         -rm -f $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME) $(DESTDIR)$(LIBRARY_INSTALL_DIR)/$(LIBRARY_NAME).mdb
180
181 else
182
183 # If RUNTIME_HAS_CONSISTENT_GACDIR is set, it implies that the internal GACDIR
184 # of the runtime is the same as the GACDIR we want.  So, we don't need to pass it
185 # to gacutil.  Note that the GACDIR we want may not be the same as the value of
186 # GACDIR set above, since the user could have overridden the value of $(prefix).
187 #
188 # This makes a difference only when we're building from the mono/ tree, since we
189 # have to ensure that the internal GACDIR of the in-tree runtime matches where we
190 # install the DLLs.
191
192 ifndef RUNTIME_HAS_CONSISTENT_GACDIR
193 gacdir_flag = /gacdir $(GACDIR)
194 endif
195
196 ifndef LIBRARY_PACKAGE
197 ifdef LIBRARY_COMPAT
198 LIBRARY_PACKAGE = compat-$(FRAMEWORK_VERSION)
199 else
200 LIBRARY_PACKAGE = $(FRAMEWORK_VERSION)
201 endif
202 endif
203
204 ifneq (none, $(LIBRARY_PACKAGE))
205 package_flag = /package $(LIBRARY_PACKAGE)
206 endif
207
208 install-local: $(gacutil)
209         $(GACUTIL) /i $(the_lib) /f $(gacdir_flag) /root $(GACROOT) $(package_flag)
210
211 uninstall-local: $(gacutil)
212         -$(GACUTIL) /u $(LIBRARY_NAME:.dll=) $(gacdir_flag) /root $(GACROOT) $(package_flag)
213
214 endif # LIBRARY_INSTALL_DIR
215 endif # NO_INSTALL
216
217 clean-local:
218         -rm -f $(tests_CLEAN_FILES) $(library_CLEAN_FILES) $(CLEAN_FILES)
219
220 test-local run-test-local run-test-ondotnet-local:
221         @:
222
223 DISTFILES = $(wildcard *$(LIBRARY)*.sources) $(EXTRA_DISTFILES)
224
225 ASSEMBLY      = $(LIBRARY)
226 ASSEMBLY_EXT  = .dll
227 the_assembly  = $(the_lib)
228 include $(topdir)/build/tests.make
229
230 ifdef HAVE_CS_TESTS
231 DISTFILES += $(test_sourcefile)
232
233 csproj-test:
234         config_file=`basename $(LIBRARY) .dll`-tests-$(PROFILE).input; \
235         echo $(thisdir):$$config_file >> $(topdir)/../msvc/scripts/order; \
236         (echo false; \
237         echo $(USE_MCS_FLAGS) -r:$(the_assembly) $(TEST_MCS_FLAGS); \
238         echo $(test_lib); \
239         echo $(BUILT_SOURCES_cmdline); \
240         echo $(test_lib); \
241         echo $(FRAMEWORK_VERSION); \
242         echo $(PROFILE); \
243         echo $(test_response)) > $(topdir)/../msvc/scripts/inputs/$$config_file
244
245 endif
246
247 # make dist will collect files in .sources files from all profiles
248 dist-local: dist-default
249         subs=' ' ; \
250         for f in `$(topdir)/tools/removecomments.sh $(wildcard *$(LIBRARY).sources)` $(TEST_FILES) ; do \
251           case $$f in \
252           ../*) : ;; \
253           *) dest=`dirname "$$f"` ; \
254              case $$subs in *" $$dest "*) : ;; *) subs=" $$dest$$subs" ; $(MKINSTALLDIRS) $(distdir)/$$dest ;; esac ; \
255              cp -p "$$f" $(distdir)/$$dest || exit 1 ;; \
256           esac ; done ; \
257         for d in . $$subs ; do \
258           case $$d in .) : ;; *) test ! -f $$d/ChangeLog || cp -p $$d/ChangeLog $(distdir)/$$d ;; esac ; done
259
260 ifndef LIBRARY_COMPILE
261 LIBRARY_COMPILE = $(CSCOMPILE)
262 endif
263
264 ifndef LIBRARY_SNK
265 LIBRARY_SNK = $(topdir)/class/mono.snk
266 endif
267
268 ifdef BUILT_SOURCES
269 library_CLEAN_FILES += $(BUILT_SOURCES)
270 ifeq (cat, $(PLATFORM_CHANGE_SEPARATOR_CMD))
271 BUILT_SOURCES_cmdline = $(BUILT_SOURCES)
272 else
273 BUILT_SOURCES_cmdline = `echo $(BUILT_SOURCES) | $(PLATFORM_CHANGE_SEPARATOR_CMD)`
274 endif
275 endif
276
277 # The library
278
279 $(the_lib): $(the_libdir)/.stamp
280
281 $(build_lib): $(response) $(sn) $(BUILT_SOURCES) $(build_libdir:=/.stamp)
282         $(LIBRARY_COMPILE) $(LIBRARY_FLAGS) $(LIB_MCS_FLAGS) $(MCS_FLAGS_RESOURCE_STRINGS) -target:library -out:$@ $(BUILT_SOURCES_cmdline) @$(response)
283         $(Q) $(SN) -R $@ $(LIBRARY_SNK)
284
285 ifdef LIBRARY_USE_INTERMEDIATE_FILE
286 $(the_lib): $(build_lib)
287         $(Q) cp $(build_lib) $@
288         $(Q) $(SN) -v $@
289         $(Q) test ! -f $(build_lib).mdb || mv $(build_lib).mdb $@.mdb
290         $(Q) test ! -f $(build_lib:.dll=.pdb) || mv $(build_lib:.dll=.pdb) $(the_lib:.dll=.pdb)
291 endif
292
293 library_CLEAN_FILES += $(PROFILE)_aot.log
294
295 ifdef PLATFORM_AOT_SUFFIX
296 Q_AOT=$(if $(V),,@echo "AOT     [$(PROFILE)] $(notdir $(@))";)
297 $(the_lib)$(PLATFORM_AOT_SUFFIX): $(the_lib)
298         $(Q_AOT) MONO_PATH='$(the_libdir)' > $(PROFILE)_aot.log 2>&1 $(RUNTIME) --aot=bind-to-runtime-version --debug $(the_lib)
299 endif
300
301 ifdef ENABLE_AOT
302 ifneq (,$(filter $(AOT_IN_PROFILES), $(PROFILE)))
303
304 all-local: $(the_lib)$(PLATFORM_AOT_SUFFIX)
305
306 endif
307 endif
308
309 makefrag = $(depsdir)/$(PROFILE)_$(LIBRARY).makefrag
310 library_CLEAN_FILES += $(makefrag)
311 $(makefrag): $(sourcefile)
312 #       @echo Creating $@ ...
313         @sed 's,^,$(build_lib): ,' $< >$@
314         @if test ! -f $(sourcefile).makefrag; then :; else \
315            cat $(sourcefile).makefrag >> $@ ; \
316            echo '$@: $(sourcefile).makefrag' >> $@; \
317            echo '$(sourcefile).makefrag:' >> $@; fi
318
319 ifneq ($(response),$(sourcefile))
320
321 ifdef PLATFORM_excludes
322 $(response): $(sourcefile) $(PLATFORM_excludes)
323         @echo Filtering $(sourcefile) to $@ ...
324         @sort $(sourcefile) $(PLATFORM_excludes) | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
325 else
326 $(response): $(sourcefile)
327         @echo Converting $(sourcefile) to $@ ...
328         @cat $(sourcefile) | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
329 endif
330
331 endif
332
333 -include $(makefrag)
334
335 # for now, don't give any /lib flags or set MONO_PATH, since we
336 # give a full path to the assembly.
337
338 ## Include corcompare stuff
339 include $(topdir)/build/corcompare.make
340
341 all-local: $(makefrag) $(test_makefrag) $(btest_makefrag)
342 ifneq ($(response),$(sourcefile))
343 $(response): $(topdir)/build/library.make $(depsdir)/.stamp
344 endif
345 $(makefrag) $(test_response) $(test_makefrag) $(btest_response) $(btest_makefrag): $(topdir)/build/library.make $(depsdir)/.stamp
346
347 ## Documentation stuff
348
349 Q_MDOC_UP=$(if $(V),,@echo "MDOC-UP [$(PROFILE)] $(notdir $(@))";)
350 MDOC_UP  =$(Q_MDOC_UP) \
351                 MONO_PATH="$(topdir)/class/lib/$(DEFAULT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/$(DEFAULT_PROFILE)/mdoc.exe \
352                 update --delete -o Documentation/en $(the_lib)
353
354 doc-update-local: $(the_libdir)/.doc-stamp
355
356 $(the_libdir)/.doc-stamp: $(the_lib)
357         $(MDOC_UP)
358         @echo "doc-stamp" > $@
359
360 # Need to be here so it comes after the definition of DEP_DIRS/DEP_LIBS
361 gen-deps:
362         @echo "$(DEPS_TARGET_DIR): $(DEP_DIRS) $(DEP_LIBS)" >> $(DEPS_FILE)