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