[mobile_static] Fixed AES class usage for mobile_static profile
[mono.git] / mcs / build / rules.make
1 # -*- makefile -*-
2 #
3 # This is the makefile fragment with default rules
4 # for building things in MCS
5 #
6 # To customize the build, you should edit config.make.
7 # If you need to edit this file, that's a bug; email
8 # peter@newton.cx about it.
9
10 empty :=
11 space := $(empty) $(empty)
12
13 # given $(thisdir), we compute the path to the top directory
14 #
15 # split_path = $(filter-out .,$(subst /,$(space),$(1)))
16 # make_path = ./$(subst $(space),/,$(1))
17 # dotdottify = $(patsubst %,..,$(1))
18 # topdir = $(call make_path,$(call dotdottify,$(call split_path,$(thisdir))))
19 topdir := ./$(subst $(space),/,$(patsubst %,..,$(filter-out .,$(subst /,$(space),$(thisdir)))))
20
21 VERSION = 0.93
22
23 Q=$(if $(V),,@)
24 # echo -e "\\t" does not work on some systems, so use 5 spaces
25 Q_MCS=$(if $(V),,@echo "MCS     [$(intermediate)$(PROFILE)] $(notdir $(@))";)
26
27 ifndef BUILD_TOOLS_PROFILE
28 BUILD_TOOLS_PROFILE = build
29 endif
30
31 USE_MCS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MCS_FLAGS) $(PLATFORM_MCS_FLAGS) $(PROFILE_MCS_FLAGS) $(MCS_FLAGS)
32 USE_MBAS_FLAGS = /codepage:$(CODEPAGE) $(LOCAL_MBAS_FLAGS) $(PLATFORM_MBAS_FLAGS) $(PROFILE_MBAS_FLAGS) $(MBAS_FLAGS)
33 USE_CFLAGS = $(LOCAL_CFLAGS) $(CFLAGS) $(CPPFLAGS)
34 CSCOMPILE = $(Q_MCS) $(MCS) $(USE_MCS_FLAGS)
35 BASCOMPILE = $(MBAS) $(USE_MBAS_FLAGS)
36 CCOMPILE = $(CC) $(USE_CFLAGS)
37 BOOT_COMPILE = $(Q_MCS) $(BOOTSTRAP_MCS) $(USE_MCS_FLAGS)
38 INSTALL = $(SHELL) $(topdir)/../mono/install-sh
39 INSTALL_DATA = $(INSTALL) -c -m 644
40 INSTALL_BIN = $(INSTALL) -c -m 755
41 INSTALL_LIB = $(INSTALL_BIN)
42 MKINSTALLDIRS = $(SHELL) $(topdir)/mkinstalldirs
43 INTERNAL_MBAS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/mbas/mbas.exe
44 INTERNAL_GMCS = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/mcs.exe
45 INTERNAL_ILASM = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/ilasm.exe
46 corlib = mscorlib.dll
47
48 INTERNAL_RESGEN = $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/resgen.exe
49 RESGEN = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_RESGEN)
50
51 depsdir = $(topdir)/build/deps
52
53 # Make sure these propagate if set manually
54
55 export PLATFORM
56 export PROFILE
57 export MCS
58 export MCS_FLAGS
59 export CC
60 export CFLAGS
61 export INSTALL
62 export MKINSTALLDIRS
63 export BOOTSTRAP_MCS
64 export DESTDIR
65 export RESGEN
66
67 # Get this so the platform.make platform-check rule doesn't become the
68 # default target
69
70 .DEFAULT: all
71 default: all
72
73 # Get initial configuration. pre-config is so that the builder can
74 # override PLATFORM or PROFILE
75
76 include $(topdir)/build/config-default.make
77 -include $(topdir)/build/pre-config.make
78 -include $(topdir)/build/config.make
79
80 # Default PLATFORM and PROFILE if they're not already defined.
81
82 ifndef PLATFORM
83 ifeq ($(OS),Windows_NT)
84 ifneq ($(V),)
85 $(info *** Assuming PLATFORM is 'win32'.)
86 endif
87 PLATFORM = win32
88 else
89 ifneq ($(V),)
90 $(info *** Assuming PLATFORM is 'linux'.)
91 endif
92 PLATFORM = linux
93 endif
94 endif
95
96 # Platform config
97
98 include $(topdir)/build/platforms/$(PLATFORM).make
99
100 ifdef PLATFORM_CORLIB
101 corlib = $(PLATFORM_CORLIB)
102 endif
103 # Useful
104
105 ifeq ($(PLATFORM_RUNTIME),$(RUNTIME))
106 PLATFORM_MONO_NATIVE = yes
107 endif
108
109 # Rest of the configuration
110
111 ifndef PROFILE
112 PROFILE = $(DEFAULT_PROFILE)
113 endif
114
115 include $(topdir)/build/profiles/$(PROFILE).make
116
117 # If the profile is using nunit-lite, use it
118 ifdef NUNIT_LITE
119 TEST_HARNESS=$(topdir)/class/lib/$(PROFILE)/nunit-lite-console.exe
120 endif
121
122 # Make sure propagates
123 export TEST_HARNESS
124
125 ifdef BCL_OPTIMIZE
126 PROFILE_MCS_FLAGS += -optimize
127 endif
128
129 ifdef OVERRIDE_TARGET_ALL
130 all: all.override
131 else
132 all: do-all
133 endif
134
135 ifdef NO_INSTALL
136 GACUTIL = :
137 else
138 gacutil = $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/gacutil.exe
139 GACUTIL = MONO_PATH="$(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(gacutil)
140 endif
141
142 STD_TARGETS = test run-test run-test-ondotnet clean install uninstall doc-update
143
144 $(STD_TARGETS): %: do-%
145
146 do-run-test:
147         ok=:; $(MAKE) run-test-recursive || ok=false; $(MAKE) run-test-local || ok=false; $$ok
148
149 do-%: %-recursive
150         $(MAKE) $*-local
151
152 .PHONY: all-local $(STD_TARGETS:=-local)
153 all-local $(STD_TARGETS:=-local):
154
155 csproj: do-csproj
156
157 # The way this is set up, any profile-specific subdirs list should
158 # be listed _before_ including rules.make.  However, the default
159 # SUBDIRS list can come after, so don't use the eager := syntax when
160 # using the defaults.
161 PROFILE_SUBDIRS := $($(PROFILE)_SUBDIRS)
162 ifndef PROFILE_SUBDIRS
163 PROFILE_SUBDIRS = $(SUBDIRS)
164 endif
165
166 # These subdirs can be built in parallel
167 PROFILE_PARALLEL_SUBDIRS := $($(PROFILE)_PARALLEL_SUBDIRS)
168 ifndef PROFILE_PARALLEL_SUBDIRS
169 PROFILE_PARALLEL_SUBDIRS = $(PARALLEL_SUBDIRS)
170 endif
171
172 ifndef FRAMEWORK_VERSION_MAJOR
173 FRAMEWORK_VERSION_MAJOR = $(basename $(FRAMEWORK_VERSION))
174 endif
175
176 %-recursive:
177         @set . $$MAKEFLAGS; final_exit=:; \
178         case $$2 in --unix) shift ;; esac; \
179         case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
180         list='$(PROFILE_SUBDIRS)'; for d in $$list ; do \
181             (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
182         done; \
183         if [ $* = "all" -a -n "$(PROFILE_PARALLEL_SUBDIRS)" ]; then \
184                 $(MAKE) do-all-parallel ENABLE_PARALLEL_SUBDIR_BUILD=1 || { final_exit="exit 1"; $$dk; } ; \
185         else \
186                 list='$(PROFILE_PARALLEL_SUBDIRS)'; for d in $$list ; do \
187                     (cd $$d && $(MAKE) $*) || { final_exit="exit 1"; $$dk; } ; \
188                 done; \
189         fi; \
190         $$final_exit
191
192 #
193 # Parallel build support
194 #
195 # The variable $(PROFILE)_PARALLEL_SUBDIRS should be set to the list of directories
196 # which could be built in parallel. These directories are built after the directories in
197 # $(PROFILE)_SUBDIRS.
198 # Parallel building is currently only supported for the 'all' target.
199 #
200 # Each directory's Makefile may define DEP_LIBS and DEP_DIRS to specify the libraries and
201 # directories it depends on.
202 #
203 ifneq ($(PROFILE_PARALLEL_SUBDIRS),)
204 dep_dirs = .dep_dirs-$(PROFILE)
205 $(dep_dirs):
206         @echo "Creating $@..."
207         list='$(PROFILE_PARALLEL_SUBDIRS)'; \
208         echo > $@; \
209         for d in $$list; do \
210                 $(MAKE) -C $$d gen-deps DEPS_TARGET_DIR=$$d DEPS_FILE=$(abspath $@); \
211         done
212 -include $(dep_dirs)
213 endif
214
215 .PHONY: gen-deps
216 # The gen-deps target is in library.make/executable.make so it can pick up
217 # DEP_LIBS/DEP_DIRS
218
219 clean-dep-dir:
220         $(RM) $(dep_dirs)
221
222 clean-local: clean-dep-dir
223
224 ifdef ENABLE_PARALLEL_SUBDIR_BUILD
225 .PHONY: do-all-parallel $(PROFILE_PARALLEL_SUBDIRS)
226
227 do-all-parallel: $(PROFILE_PARALLEL_SUBDIRS)
228
229 $(PROFILE_PARALLEL_SUBDIRS):
230         @set . $$MAKEFLAGS; \
231         cd $@ && $(MAKE)
232 endif
233
234 ifndef DIST_SUBDIRS
235 DIST_SUBDIRS = $(SUBDIRS) $(DIST_ONLY_SUBDIRS)
236 endif
237 dist-recursive: dist-local
238         @case '$(distdir)' in [\\/$$]* | ?:[\\/]* ) reldir='$(distdir)' ;; *) reldir='../$(distdir)' ;; esac ; \
239         list='$(DIST_SUBDIRS)'; for d in $$list ; do \
240             (cd $$d && $(MAKE) distdir=$$reldir/$$d $@) || exit 1 ; \
241         done
242
243 # The following target can be used like
244 #
245 #   dist-local: dist-default
246 #       ... additional commands ...
247 #
248 # Notes:
249 #  1. we invert the test here to not end in an error if ChangeLog doesn't exist.
250 #  2. we error out if we try to dist a nonexistant file.
251 #  3. we pick up Makefile, makefile, or GNUmakefile.
252 dist-default:
253         -mkdir -p $(distdir)
254         test '!' -f ChangeLog || cp ChangeLog $(distdir)
255         if test -f Makefile; then m=M; fi; \
256         if test -f makefile; then m=m; fi; \
257         if test -f GNUmakefile; then m=GNUm; fi; \
258         for f in $${m}akefile $(DISTFILES) ; do \
259             dest=`dirname "$(distdir)/$$f"` ; \
260             $(MKINSTALLDIRS) $$dest && cp -p "$$f" $$dest || exit 1 ; \
261         done
262         if test -d Documentation ; then \
263                 find . -name '*.xml' > .files ; \
264                 tar cTf .files - | (cd $(distdir); tar xf -) ; \
265                 rm .files ; \
266         fi
267
268 %/.stamp:
269         $(MKINSTALLDIRS) $(@D)
270         touch $@
271
272 ## Documentation stuff
273
274 Q_MDOC =$(if $(V),,@echo "MDOC    [$(PROFILE)] $(notdir $(@))";)
275 MDOC   =$(Q_MDOC) MONO_PATH="$(topdir)/class/lib/$(DEFAULT_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(topdir)/class/lib/$(DEFAULT_PROFILE)/mdoc.exe
276