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