]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - scripts/Makefile.build
karo: configs: Update the tx6*_defconfig files from defconfigs generated with 'make...
[karo-tx-uboot.git] / scripts / Makefile.build
1 # ==========================================================================
2 # Building
3 # ==========================================================================
4
5 # Modified for U-Boot
6 prefix := tpl
7 src := $(patsubst $(prefix)/%,%,$(obj))
8 ifeq ($(obj),$(src))
9 prefix := spl
10 src := $(patsubst $(prefix)/%,%,$(obj))
11 ifeq ($(obj),$(src))
12 prefix := .
13 endif
14 endif
15
16 PHONY := __build
17 __build:
18
19 # Init all relevant variables used in kbuild files so
20 # 1) they have correct type
21 # 2) they do not inherit any value from the environment
22 obj-y :=
23 obj-m :=
24 lib-y :=
25 lib-m :=
26 always :=
27 targets :=
28 subdir-y :=
29 subdir-m :=
30 EXTRA_AFLAGS   :=
31 EXTRA_CFLAGS   :=
32 EXTRA_CPPFLAGS :=
33 EXTRA_LDFLAGS  :=
34 asflags-y  :=
35 ccflags-y  :=
36 cppflags-y :=
37 ldflags-y  :=
38
39 subdir-asflags-y :=
40 subdir-ccflags-y :=
41
42 # Read auto.conf if it exists, otherwise ignore
43 # Modified for U-Boot
44 -include include/config/auto.conf
45 -include $(prefix)/include/autoconf.mk
46 include scripts/Makefile.uncmd_spl
47
48 include scripts/Kbuild.include
49
50 # For backward compatibility check that these variables do not change
51 save-cflags := $(CFLAGS)
52
53 # The filename Kbuild has precedence over Makefile
54 kbuild-dir := $(if $(filter /%,$(src)),$(src),$(srctree)/$(src))
55 kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile)
56 include $(kbuild-file)
57
58 # Added for U-Boot
59 asflags-y  += $(PLATFORM_CPPFLAGS)
60 ccflags-y  += $(PLATFORM_CPPFLAGS)
61 cppflags-y += $(PLATFORM_CPPFLAGS)
62
63 # If the save-* variables changed error out
64 ifeq ($(KBUILD_NOPEDANTIC),)
65         ifneq ("$(save-cflags)","$(CFLAGS)")
66                 $(error CFLAGS was changed in "$(kbuild-file)". Fix it to use ccflags-y)
67         endif
68 endif
69
70 include scripts/Makefile.lib
71
72 ifdef host-progs
73 ifneq ($(hostprogs-y),$(host-progs))
74 $(warning kbuild: $(obj)/Makefile - Usage of host-progs is deprecated. Please replace with hostprogs-y!)
75 hostprogs-y += $(host-progs)
76 endif
77 endif
78
79 # Do not include host rules unless needed
80 ifneq ($(hostprogs-y)$(hostprogs-m),)
81 include scripts/Makefile.host
82 endif
83
84 # Uncommented for U-Boot
85 #  We need to create output dicrectory for SPL and TPL even for in-tree build
86 #ifneq ($(KBUILD_SRC),)
87 # Create output directory if not already present
88 _dummy := $(shell [ -d $(obj) ] || mkdir -p $(obj))
89
90 # Create directories for object files if directory does not exist
91 # Needed when obj-y := dir/file.o syntax is used
92 _dummy := $(foreach d,$(obj-dirs), $(shell [ -d $(d) ] || mkdir -p $(d)))
93 #endif
94
95 ifndef obj
96 $(warning kbuild: Makefile.build is included improperly)
97 endif
98
99 # ===========================================================================
100
101 ifneq ($(strip $(lib-y) $(lib-m) $(lib-)),)
102 lib-target := $(obj)/lib.a
103 endif
104
105 ifneq ($(strip $(obj-y) $(obj-m) $(obj-) $(subdir-m) $(lib-target)),)
106 builtin-target := $(obj)/built-in.o
107 endif
108
109 modorder-target := $(obj)/modules.order
110
111 # We keep a list of all modules in $(MODVERDIR)
112
113 __build: $(if $(KBUILD_BUILTIN),$(builtin-target) $(lib-target) $(extra-y)) \
114          $(if $(KBUILD_MODULES),$(obj-m) $(modorder-target)) \
115          $(subdir-ym) $(always)
116         @:
117
118 # Linus' kernel sanity checking tool
119 ifneq ($(KBUILD_CHECKSRC),0)
120   ifeq ($(KBUILD_CHECKSRC),2)
121     quiet_cmd_force_checksrc = CHECK   $<
122           cmd_force_checksrc = $(CHECK) $(CHECKFLAGS) $(c_flags) $< ;
123   else
124       quiet_cmd_checksrc     = CHECK   $<
125             cmd_checksrc     = $(CHECK) $(CHECKFLAGS) $(c_flags) $< ;
126   endif
127 endif
128
129 # Do section mismatch analysis for each module/built-in.o
130 ifdef CONFIG_DEBUG_SECTION_MISMATCH
131   cmd_secanalysis = ; scripts/mod/modpost $@
132 endif
133
134 # Compile C sources (.c)
135 # ---------------------------------------------------------------------------
136
137 # Default is built-in, unless we know otherwise
138 modkern_cflags =                                          \
139         $(if $(part-of-module),                           \
140                 $(KBUILD_CFLAGS_MODULE) $(CFLAGS_MODULE), \
141                 $(KBUILD_CFLAGS_KERNEL) $(CFLAGS_KERNEL))
142 quiet_modtag := $(empty)   $(empty)
143
144 $(real-objs-m)        : part-of-module := y
145 $(real-objs-m:.o=.i)  : part-of-module := y
146 $(real-objs-m:.o=.s)  : part-of-module := y
147 $(real-objs-m:.o=.lst): part-of-module := y
148
149 $(real-objs-m)        : quiet_modtag := [M]
150 $(real-objs-m:.o=.i)  : quiet_modtag := [M]
151 $(real-objs-m:.o=.s)  : quiet_modtag := [M]
152 $(real-objs-m:.o=.lst): quiet_modtag := [M]
153
154 $(obj-m)              : quiet_modtag := [M]
155
156 # Default for not multi-part modules
157 modname = $(basetarget)
158
159 $(multi-objs-m)         : modname = $(modname-multi)
160 $(multi-objs-m:.o=.i)   : modname = $(modname-multi)
161 $(multi-objs-m:.o=.s)   : modname = $(modname-multi)
162 $(multi-objs-m:.o=.lst) : modname = $(modname-multi)
163 $(multi-objs-y)         : modname = $(modname-multi)
164 $(multi-objs-y:.o=.i)   : modname = $(modname-multi)
165 $(multi-objs-y:.o=.s)   : modname = $(modname-multi)
166 $(multi-objs-y:.o=.lst) : modname = $(modname-multi)
167
168 quiet_cmd_cc_s_c = CC $(quiet_modtag)  $@
169 cmd_cc_s_c       = $(CC) $(c_flags) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
170
171 $(obj)/%.s: $(src)/%.c FORCE
172         $(call if_changed_dep,cc_s_c)
173
174 quiet_cmd_cc_i_c = CPP $(quiet_modtag) $@
175 cmd_cc_i_c       = $(CPP) $(c_flags)   -o $@ $<
176
177 $(obj)/%.i: $(src)/%.c FORCE
178         $(call if_changed_dep,cc_i_c)
179
180 cmd_gensymtypes =                                                           \
181     $(CPP) -D__GENKSYMS__ $(c_flags) $< |                                   \
182     $(GENKSYMS) $(if $(1), -T $(2))                                         \
183      $(patsubst y,-s _,$(CONFIG_HAVE_UNDERSCORE_SYMBOL_PREFIX))             \
184      $(if $(KBUILD_PRESERVE),-p)                                            \
185      -r $(firstword $(wildcard $(2:.symtypes=.symref) /dev/null))
186
187 quiet_cmd_cc_symtypes_c = SYM $(quiet_modtag) $@
188 cmd_cc_symtypes_c =                                                         \
189     set -e;                                                                 \
190     $(call cmd_gensymtypes,true,$@) >/dev/null;                             \
191     test -s $@ || rm -f $@
192
193 $(obj)/%.symtypes : $(src)/%.c FORCE
194         $(call cmd,cc_symtypes_c)
195
196 # C (.c) files
197 # The C file is compiled and updated dependency information is generated.
198 # (See cmd_cc_o_c + relevant part of rule_cc_o_c)
199
200 quiet_cmd_cc_o_c = CC $(quiet_modtag)  $@
201
202 ifndef CONFIG_MODVERSIONS
203 cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
204
205 else
206 # When module versioning is enabled the following steps are executed:
207 # o compile a .tmp_<file>.o from <file>.c
208 # o if .tmp_<file>.o doesn't contain a __ksymtab version, i.e. does
209 #   not export symbols, we just rename .tmp_<file>.o to <file>.o and
210 #   are done.
211 # o otherwise, we calculate symbol versions using the good old
212 #   genksyms on the preprocessed source and postprocess them in a way
213 #   that they are usable as a linker script
214 # o generate <file>.o from .tmp_<file>.o using the linker to
215 #   replace the unresolved symbols __crc_exported_symbol with
216 #   the actual value of the checksum generated by genksyms
217
218 cmd_cc_o_c = $(CC) $(c_flags) -c -o $(@D)/.tmp_$(@F) $<
219 cmd_modversions =                                                               \
220         if $(OBJDUMP) -h $(@D)/.tmp_$(@F) | grep -q __ksymtab; then             \
221                 $(call cmd_gensymtypes,$(KBUILD_SYMTYPES),$(@:.o=.symtypes))    \
222                     > $(@D)/.tmp_$(@F:.o=.ver);                                 \
223                                                                                 \
224                 $(LD) $(LDFLAGS) -r -o $@ $(@D)/.tmp_$(@F)                      \
225                         -T $(@D)/.tmp_$(@F:.o=.ver);                            \
226                 rm -f $(@D)/.tmp_$(@F) $(@D)/.tmp_$(@F:.o=.ver);                \
227         else                                                                    \
228                 mv -f $(@D)/.tmp_$(@F) $@;                                      \
229         fi;
230 endif
231
232 ifdef CONFIG_FTRACE_MCOUNT_RECORD
233 ifdef BUILD_C_RECORDMCOUNT
234 ifeq ("$(origin RECORDMCOUNT_WARN)", "command line")
235   RECORDMCOUNT_FLAGS = -w
236 endif
237 # Due to recursion, we must skip empty.o.
238 # The empty.o file is created in the make process in order to determine
239 #  the target endianness and word size. It is made before all other C
240 #  files, including recordmcount.
241 sub_cmd_record_mcount =                                 \
242         if [ $(@) != "scripts/mod/empty.o" ]; then      \
243                 $(objtree)/scripts/recordmcount $(RECORDMCOUNT_FLAGS) "$(@)";   \
244         fi;
245 recordmcount_source := $(srctree)/scripts/recordmcount.c \
246                     $(srctree)/scripts/recordmcount.h
247 else
248 sub_cmd_record_mcount = set -e ; perl $(srctree)/scripts/recordmcount.pl "$(ARCH)" \
249         "$(if $(CONFIG_CPU_BIG_ENDIAN),big,little)" \
250         "$(if $(CONFIG_64BIT),64,32)" \
251         "$(OBJDUMP)" "$(OBJCOPY)" "$(CC) $(KBUILD_CFLAGS)" \
252         "$(LD)" "$(NM)" "$(RM)" "$(MV)" \
253         "$(if $(part-of-module),1,0)" "$(@)";
254 recordmcount_source := $(srctree)/scripts/recordmcount.pl
255 endif
256 cmd_record_mcount =                                             \
257         if [ "$(findstring $(CC_FLAGS_FTRACE),$(_c_flags))" =   \
258              "$(CC_FLAGS_FTRACE)" ]; then                       \
259                 $(sub_cmd_record_mcount)                        \
260         fi;
261 endif
262
263 define rule_cc_o_c
264         $(call echo-cmd,checksrc) $(cmd_checksrc)                         \
265         $(call echo-cmd,cc_o_c) $(cmd_cc_o_c);                            \
266         $(cmd_modversions)                                                \
267         $(call echo-cmd,record_mcount)                                    \
268         $(cmd_record_mcount)                                              \
269         scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,cc_o_c)' >    \
270                                                       $(dot-target).tmp;  \
271         rm -f $(depfile);                                                 \
272         mv -f $(dot-target).tmp $(dot-target).cmd
273 endef
274
275 # Built-in and composite module parts
276 $(obj)/%.o: $(src)/%.c $(recordmcount_source) FORCE
277         $(call cmd,force_checksrc)
278         $(call if_changed_rule,cc_o_c)
279
280 # Single-part modules are special since we need to mark them in $(MODVERDIR)
281
282 $(single-used-m): $(obj)/%.o: $(src)/%.c $(recordmcount_source) FORCE
283         $(call cmd,force_checksrc)
284         $(call if_changed_rule,cc_o_c)
285         @{ echo $(@:.o=.ko); echo $@; } > $(MODVERDIR)/$(@F:.o=.mod)
286
287 quiet_cmd_cc_lst_c = MKLST   $@
288       cmd_cc_lst_c = $(CC) $(c_flags) -g -c -o $*.o $< && \
289                      $(CONFIG_SHELL) $(srctree)/scripts/makelst $*.o \
290                                      System.map $(OBJDUMP) > $@
291
292 $(obj)/%.lst: $(src)/%.c FORCE
293         $(call if_changed_dep,cc_lst_c)
294
295 # Compile assembler sources (.S)
296 # ---------------------------------------------------------------------------
297
298 modkern_aflags := $(KBUILD_AFLAGS_KERNEL) $(AFLAGS_KERNEL)
299
300 $(real-objs-m)      : modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
301 $(real-objs-m:.o=.s): modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
302
303 quiet_cmd_as_s_S = CPP $(quiet_modtag) $@
304 cmd_as_s_S       = $(CPP) $(a_flags)   -o $@ $<
305
306 $(obj)/%.s: $(src)/%.S FORCE
307         $(call if_changed_dep,as_s_S)
308
309 quiet_cmd_as_o_S = AS $(quiet_modtag)  $@
310 cmd_as_o_S       = $(CC) $(a_flags) -c -o $@ $<
311
312 $(obj)/%.o: $(src)/%.S FORCE
313         $(call if_changed_dep,as_o_S)
314
315 targets += $(real-objs-y) $(real-objs-m) $(lib-y)
316 targets += $(extra-y) $(MAKECMDGOALS) $(always)
317
318 # Linker scripts preprocessor (.lds.S -> .lds)
319 # ---------------------------------------------------------------------------
320 quiet_cmd_cpp_lds_S = LDS     $@
321       cmd_cpp_lds_S = $(CPP) $(cpp_flags) -P -C -U$(ARCH) \
322                              -D__ASSEMBLY__ -DLINKER_SCRIPT -o $@ $<
323
324 $(obj)/%.lds: $(src)/%.lds.S FORCE
325         $(call if_changed_dep,cpp_lds_S)
326
327 # ASN.1 grammar
328 # ---------------------------------------------------------------------------
329 quiet_cmd_asn1_compiler = ASN.1   $@
330       cmd_asn1_compiler = $(objtree)/scripts/asn1_compiler $< \
331                                 $(subst .h,.c,$@) $(subst .c,.h,$@)
332
333 .PRECIOUS: $(objtree)/$(obj)/%-asn1.c $(objtree)/$(obj)/%-asn1.h
334
335 $(obj)/%-asn1.c $(obj)/%-asn1.h: $(src)/%.asn1 $(objtree)/scripts/asn1_compiler
336         $(call cmd,asn1_compiler)
337
338 # Build the compiled-in targets
339 # ---------------------------------------------------------------------------
340
341 # To build objects in subdirs, we need to descend into the directories
342 $(sort $(subdir-obj-y)): $(subdir-ym) ;
343
344 #
345 # Rule to compile a set of .o files into one .o file
346 #
347 ifdef builtin-target
348 quiet_cmd_link_o_target = LD      $@
349 # If the list of objects to link is empty, just create an empty built-in.o
350 cmd_link_o_target = $(if $(strip $(obj-y)),\
351                       $(LD) $(ld_flags) -r -o $@ $(filter $(obj-y), $^) \
352                       $(cmd_secanalysis),\
353                       rm -f $@; $(AR) rcs$(KBUILD_ARFLAGS) $@)
354
355 $(builtin-target): $(obj-y) FORCE
356         $(call if_changed,link_o_target)
357
358 targets += $(builtin-target)
359 endif # builtin-target
360
361 #
362 # Rule to create modules.order file
363 #
364 # Create commands to either record .ko file or cat modules.order from
365 # a subdirectory
366 modorder-cmds =                                         \
367         $(foreach m, $(modorder),                       \
368                 $(if $(filter %/modules.order, $m),     \
369                         cat $m;, echo kernel/$m;))
370
371 $(modorder-target): $(subdir-ym) FORCE
372         $(Q)(cat /dev/null; $(modorder-cmds)) > $@
373
374 #
375 # Rule to compile a set of .o files into one .a file
376 #
377 ifdef lib-target
378 quiet_cmd_link_l_target = AR      $@
379 cmd_link_l_target = rm -f $@; $(AR) rcs$(KBUILD_ARFLAGS) $@ $(lib-y)
380
381 $(lib-target): $(lib-y) FORCE
382         $(call if_changed,link_l_target)
383
384 targets += $(lib-target)
385 endif
386
387 #
388 # Rule to link composite objects
389 #
390 #  Composite objects are specified in kbuild makefile as follows:
391 #    <composite-object>-objs := <list of .o files>
392 #  or
393 #    <composite-object>-y    := <list of .o files>
394 link_multi_deps =                     \
395 $(filter $(addprefix $(obj)/,         \
396 $($(subst $(obj)/,,$(@:.o=-objs)))    \
397 $($(subst $(obj)/,,$(@:.o=-y)))), $^)
398
399 quiet_cmd_link_multi-y = LD      $@
400 cmd_link_multi-y = $(LD) $(ld_flags) -r -o $@ $(link_multi_deps) $(cmd_secanalysis)
401
402 quiet_cmd_link_multi-m = LD [M]  $@
403 cmd_link_multi-m = $(cmd_link_multi-y)
404
405 $(multi-used-y): FORCE
406         $(call if_changed,link_multi-y)
407 $(call multi_depend, $(multi-used-y), .o, -objs -y)
408
409 $(multi-used-m): FORCE
410         $(call if_changed,link_multi-m)
411         @{ echo $(@:.o=.ko); echo $(link_multi_deps); } > $(MODVERDIR)/$(@F:.o=.mod)
412 $(call multi_depend, $(multi-used-m), .o, -objs -y)
413
414 targets += $(multi-used-y) $(multi-used-m)
415
416
417 # Descending
418 # ---------------------------------------------------------------------------
419
420 PHONY += $(subdir-ym)
421 $(subdir-ym):
422         $(Q)$(MAKE) $(build)=$@
423
424 # Add FORCE to the prequisites of a target to force it to be always rebuilt.
425 # ---------------------------------------------------------------------------
426
427 PHONY += FORCE
428
429 FORCE:
430
431 # Read all saved command lines and dependencies for the $(targets) we
432 # may be building above, using $(if_changed{,_dep}). As an
433 # optimization, we don't need to read them if the target does not
434 # exist, we will rebuild anyway in that case.
435
436 targets := $(wildcard $(sort $(targets)))
437 cmd_files := $(wildcard $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
438
439 ifneq ($(cmd_files),)
440   include $(cmd_files)
441 endif
442
443 # Declare the contents of the .PHONY variable as phony.  We keep that
444 # information in a variable se we can use it in if_changed and friends.
445
446 .PHONY: $(PHONY)