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