# BRCM_VERSION=3
[bcm963xx.git] / kernel / linux / Makefile
1 VERSION = 2
2 PATCHLEVEL = 6
3 SUBLEVEL = 8
4 EXTRAVERSION = .1
5 NAME=Zonked Quokka
6
7 # *DOCUMENTATION*
8 # To see a list of typical targets execute "make help"
9 # More info can be located in ./README
10 # Comments in this file are targeted only to the developer, do not
11 # expect to learn how to build the kernel reading this file.
12
13 # Do not print "Entering directory ..."
14 MAKEFLAGS += --no-print-directory
15
16 # We are using a recursive build, so we need to do a little thinking
17 # to get the ordering right.
18 #
19 # Most importantly: sub-Makefiles should only ever modify files in
20 # their own directory. If in some directory we have a dependency on
21 # a file in another dir (which doesn't happen often, but it's of
22 # unavoidable when linking the built-in.o targets which finally
23 # turn into vmlinux), we will call a sub make in that other dir, and
24 # after that we are sure that everything which is in that other dir
25 # is now up to date.
26 #
27 # The only cases where we need to modify files which have global
28 # effects are thus separated out and done before the recursive
29 # descending is started. They are now explicitly listed as the
30 # prepare rule.
31
32 # To put more focus on warnings, be less verbose as default
33 # Use 'make V=1' to see the full commands
34
35 ifdef V
36   ifeq ("$(origin V)", "command line")
37     KBUILD_VERBOSE = $(V)
38   endif
39 endif
40 ifndef KBUILD_VERBOSE
41   KBUILD_VERBOSE = 0
42 endif
43
44 # Call sparse as part of compilation of C files
45 # Use 'make C=1' to enable sparse checking
46
47 ifdef C
48   ifeq ("$(origin C)", "command line")
49     KBUILD_CHECKSRC = $(C)
50   endif
51 endif
52 ifndef KBUILD_CHECKSRC
53   KBUILD_CHECKSRC = 0
54 endif
55
56 # Use make M=dir to specify directory of external module to build
57 # Old syntax make ... SUBDIRS=$PWD is still supported
58 # Setting the environment variable KBUILD_EXTMOD take precedence
59 ifdef SUBDIRS
60   KBUILD_EXTMOD ?= $(SUBDIRS)
61 endif
62 ifdef M
63   ifeq ("$(origin M)", "command line")
64     KBUILD_EXTMOD := $(M)
65   endif
66 endif
67
68
69 # kbuild supports saving output files in a separate directory.
70 # To locate output files in a separate directory two syntax'es are supported.
71 # In both cases the working directory must be the root of the kernel src.
72 # 1) O=
73 # Use "make O=dir/to/store/output/files/"
74
75 # 2) Set KBUILD_OUTPUT
76 # Set the environment variable KBUILD_OUTPUT to point to the directory
77 # where the output files shall be placed.
78 # export KBUILD_OUTPUT=dir/to/store/output/files/
79 # make
80 #
81 # The O= assigment takes precedence over the KBUILD_OUTPUT environment variable.
82
83
84 # KBUILD_SRC is set on invocation of make in OBJ directory
85 # KBUILD_SRC is not intended to be used by the regular user (for now)
86 ifeq ($(KBUILD_SRC),)
87
88 # OK, Make called in directory where kernel src resides
89 # Do we want to locate output files in a separate directory?
90 ifdef O
91   ifeq ("$(origin O)", "command line")
92     KBUILD_OUTPUT := $(O)
93   endif
94 endif
95
96 # That's our default target when none is given on the command line
97 .PHONY: _all
98 _all:
99
100 ifneq ($(KBUILD_OUTPUT),)
101 # Invoke a second make in the output directory, passing relevant variables
102 # check that the output directory actually exists
103 saved-output := $(KBUILD_OUTPUT)
104 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
105 $(if $(wildcard $(KBUILD_OUTPUT)),, \
106      $(error output directory "$(saved-output)" does not exist))
107
108 .PHONY: $(MAKECMDGOALS)
109
110 $(filter-out _all,$(MAKECMDGOALS)) _all:
111         $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT)         \
112         KBUILD_SRC=$(CURDIR)         KBUILD_VERBOSE=$(KBUILD_VERBOSE)   \
113         KBUILD_CHECK=$(KBUILD_CHECK) KBUILD_EXTMOD="$(KBUILD_EXTMOD)"   \
114         -f $(CURDIR)/Makefile $@
115
116 # Leave processing to above invocation of make
117 skip-makefile := 1
118 endif # ifneq ($(KBUILD_OUTPUT),)
119 endif # ifeq ($(KBUILD_SRC),)
120
121 # We process the rest of the Makefile if this is the final invocation of make
122 ifeq ($(skip-makefile),)
123
124 # If building an external module we do not care about the all: rule
125 # but instead _all depend on modules
126 .PHONY: all
127 ifeq ($(KBUILD_EXTMOD),)
128 _all: all
129 else
130 _all: modules
131 endif
132
133 srctree         := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
134 TOPDIR          := $(srctree)
135 # FIXME - TOPDIR is obsolete, use srctree/objtree
136 objtree         := $(CURDIR)
137 src             := $(srctree)
138 obj             := $(objtree)
139
140 VPATH           := $(srctree)
141
142 export srctree objtree VPATH TOPDIR
143
144 KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
145
146 # SUBARCH tells the usermode build what the underlying arch is.  That is set
147 # first, and if a usermode build is happening, the "ARCH=um" on the command
148 # line overrides the setting of ARCH below.  If a native build is happening,
149 # then ARCH is assigned, getting whatever value it gets normally, and 
150 # SUBARCH is subsequently ignored.
151
152 SUBARCH := mips
153
154 # Cross compiling and selecting different set of gcc/bin-utils
155 # ---------------------------------------------------------------------------
156 #
157 # When performing cross compilation for other architectures ARCH shall be set
158 # to the target architecture. (See arch/* for the possibilities).
159 # ARCH can be set during invocation of make:
160 # make ARCH=ia64
161 # Another way is to have ARCH set in the environment.
162 # The default ARCH is the host where make is executed.
163
164 # CROSS_COMPILE specify the prefix used for all executables used
165 # during compilation. Only gcc and related bin-utils executables
166 # are prefixed with $(CROSS_COMPILE).
167 # CROSS_COMPILE can be set on the command line
168 # make CROSS_COMPILE=ia64-linux-
169 # Alternatively CROSS_COMPILE can be set in the environment.
170 # Default value for CROSS_COMPILE is not to prefix executables
171 # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
172
173 ARCH            ?= $(SUBARCH)
174 CROSS_COMPILE   ?=
175
176 # Architecture as present in compile.h
177 UTS_MACHINE := $(ARCH)
178
179 # SHELL used by kbuild
180 CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
181           else if [ -x /bin/bash ]; then echo /bin/bash; \
182           else echo sh; fi ; fi)
183
184 HOSTCC          = gcc
185 HOSTCXX         = g++
186 HOSTCFLAGS      = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
187 HOSTCXXFLAGS    = -O2
188
189 #       Decide whether to build built-in, modular, or both.
190 #       Normally, just do built-in.
191
192 KBUILD_MODULES :=
193 KBUILD_BUILTIN := 1
194
195 #       If we have only "make modules", don't compile built-in objects.
196 #       When we're building modules with modversions, we need to consider
197 #       the built-in objects during the descend as well, in order to
198 #       make sure the checksums are uptodate before we record them.
199
200 ifeq ($(MAKECMDGOALS),modules)
201   KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
202 endif
203
204 #       If we have "make <whatever> modules", compile modules
205 #       in addition to whatever we do anyway.
206 #       Just "make" or "make all" shall build modules as well
207
208 ifneq ($(filter all _all modules,$(MAKECMDGOALS)),)
209   KBUILD_MODULES := 1
210 endif
211
212 ifeq ($(MAKECMDGOALS),)
213   KBUILD_MODULES := 1
214 endif
215
216 export KBUILD_MODULES KBUILD_BUILTIN KBUILD_VERBOSE
217 export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD
218
219 # Beautify output
220 # ---------------------------------------------------------------------------
221 #
222 # Normally, we echo the whole command before executing it. By making
223 # that echo $($(quiet)$(cmd)), we now have the possibility to set
224 # $(quiet) to choose other forms of output instead, e.g.
225 #
226 #         quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
227 #         cmd_cc_o_c       = $(CC) $(c_flags) -c -o $@ $<
228 #
229 # If $(quiet) is empty, the whole command will be printed.
230 # If it is set to "quiet_", only the short version will be printed. 
231 # If it is set to "silent_", nothing wil be printed at all, since
232 # the variable $(silent_cmd_cc_o_c) doesn't exist.
233 #
234 # A simple variant is to prefix commands with $(Q) - that's usefull
235 # for commands that shall be hidden in non-verbose mode.
236 #
237 #       $(Q)ln $@ :<
238 #
239 # If KBUILD_VERBOSE equals 0 then the above command will be hidden.
240 # If KBUILD_VERBOSE equals 1 then the above command is displayed.
241
242 ifeq ($(KBUILD_VERBOSE),1)
243   quiet =
244   Q =
245 else
246   quiet=quiet_
247   Q = @
248 endif
249
250 # If the user is running make -s (silent mode), suppress echoing of
251 # commands
252
253 ifneq ($(findstring s,$(MAKEFLAGS)),)
254   quiet=silent_
255 endif
256
257 check_gcc = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
258
259 export quiet Q KBUILD_VERBOSE check_gcc
260
261 # Look for make include files relative to root of kernel src
262 MAKEFLAGS += --include-dir=$(srctree)
263
264 # For maximum performance (+ possibly random breakage, uncomment
265 # the following)
266
267 #MAKEFLAGS += -rR
268
269 # Make variables (CC, etc...)
270
271 AS              = $(CROSS_COMPILE)as
272 LD              = $(CROSS_COMPILE)ld
273 CC              = $(CROSS_COMPILE)gcc
274 CPP             = $(CC) -E
275 AR              = $(CROSS_COMPILE)ar
276 NM              = $(CROSS_COMPILE)nm
277 STRIP           = $(CROSS_COMPILE)strip
278 OBJCOPY         = $(CROSS_COMPILE)objcopy
279 OBJDUMP         = $(CROSS_COMPILE)objdump
280 AWK             = awk
281 GENKSYMS        = scripts/genksyms/genksyms
282 DEPMOD          = /sbin/depmod
283 KALLSYMS        = scripts/kallsyms
284 PERL            = perl
285 CHECK           = sparse
286 MODFLAGS        = -DMODULE
287 CFLAGS_MODULE   = $(MODFLAGS)
288 AFLAGS_MODULE   = $(MODFLAGS)
289 LDFLAGS_MODULE  = -r
290 CFLAGS_KERNEL   =
291 AFLAGS_KERNEL   =
292
293 NOSTDINC_FLAGS  = -nostdinc -iwithprefix include
294
295 CPPFLAGS        := -D__KERNEL__ -Iinclude \
296                    $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include)
297
298 CFLAGS          := -Wall -Wstrict-prototypes -Wno-trigraphs \
299                    -fno-strict-aliasing -fno-common
300 AFLAGS          := -D__ASSEMBLY__
301
302 export  VERSION PATCHLEVEL SUBLEVEL EXTRAVERSION KERNELRELEASE ARCH \
303         CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC \
304         CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE \
305         HOSTCXX HOSTCXXFLAGS LDFLAGS_BLOB LDFLAGS_MODULE CHECK
306
307 export CPPFLAGS NOSTDINC_FLAGS OBJCOPYFLAGS LDFLAGS
308 export CFLAGS CFLAGS_KERNEL CFLAGS_MODULE 
309 export AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
310
311 # When compiling out-of-tree modules, put MODVERDIR in the module
312 # tree rather than in the kernel tree. The kernel tree might
313 # even be read-only.
314 export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions
315
316 # The temporary file to save gcc -MD generated dependencies must not
317 # contain a comma
318 comma := ,
319 depfile = $(subst $(comma),_,$(@D)/.$(@F).d)
320
321 # Files to ignore in find ... statements
322
323 RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc \) -prune -o
324 RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc
325
326 # ===========================================================================
327 # Rules shared between *config targets and build targets
328
329 # Basic helpers built in scripts/
330 .PHONY: scripts_basic
331 scripts_basic:
332         $(Q)$(MAKE) $(build)=scripts/basic
333
334 # To make sure we do not include .config for any of the *config targets
335 # catch them early, and hand them over to scripts/kconfig/Makefile
336 # It is allowed to specify more targets when calling make, including
337 # mixing *config targets and build targets.
338 # For example 'make oldconfig all'. 
339 # Detect when mixed targets is specified, and make a second invocation
340 # of make so .config is not included in this case either (for *config).
341
342 no-dot-config-targets := clean mrproper distclean \
343                          cscope TAGS tags help %docs check%
344
345 config-targets := 0
346 mixed-targets  := 0
347 dot-config     := 1
348
349 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
350         ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
351                 dot-config := 0
352         endif
353 endif
354
355 ifeq ($(KBUILD_EXTMOD),)
356         ifneq ($(filter config %config,$(MAKECMDGOALS)),)
357                 config-targets := 1
358                 ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
359                         mixed-targets := 1
360                 endif
361         endif
362 endif
363
364 ifeq ($(mixed-targets),1)
365 # ===========================================================================
366 # We're called with mixed targets (*config and build targets).
367 # Handle them one by one.
368
369 %:: FORCE
370         $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@
371
372 else
373 ifeq ($(config-targets),1)
374 # ===========================================================================
375 # *config targets only - make sure prerequisites are updated, and descend
376 # in scripts/kconfig to make the *config target
377
378 config: scripts_basic FORCE
379         $(Q)$(MAKE) $(build)=scripts/kconfig $@
380 %config: scripts_basic FORCE
381         $(Q)$(MAKE) $(build)=scripts/kconfig $@
382
383 else
384 # ===========================================================================
385 # Build targets only - this includes vmlinux, arch specific targets, clean
386 # targets and others. In general all targets except *config targets.
387
388 ifeq ($(KBUILD_EXTMOD),)
389 # Additional helpers built in scripts/
390 # Carefully list dependencies so we do not try to build scripts twice
391 # in parrallel
392 .PHONY: scripts
393 scripts: scripts_basic include/config/MARKER
394         $(Q)$(MAKE) $(build)=$(@)
395
396 scripts_basic: include/linux/autoconf.h
397
398 # Objects we will link into vmlinux / subdirs we need to visit
399 init-y          := init/
400 drivers-y       := drivers/ sound/
401 net-y           := net/
402 libs-y          := lib/
403 core-y          := usr/
404 endif # KBUILD_EXTMOD
405
406 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
407 export HPATH    := $(TOPDIR)/include
408 brcmdrivers-y   := $(INC_BRCMBOARDPARMS_PATH)/$(BRCM_BOARD)/ $(BRCMDRIVERS_DIR)/
409 BRCMDRIVERS     := $(brcmdrivers-y)
410 # CONFIG_MIPS_BRCM End Broadcom changed code.
411
412 ifeq ($(dot-config),1)
413 # In this section, we need .config
414
415 # Read in dependencies to all Kconfig* files, make sure to run
416 # oldconfig if changes are detected.
417 -include .config.cmd
418
419 include .config
420
421 # If .config needs to be updated, it will be done via the dependency
422 # that autoconf has on .config.
423 # To avoid any implicit rule to kick in, define an empty command
424 .config: ;
425
426 # If .config is newer than include/linux/autoconf.h, someone tinkered
427 # with it and forgot to run make oldconfig
428 include/linux/autoconf.h: .config
429         $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
430 else
431 # Dummy target needed, because used as prerequisite
432 include/linux/autoconf.h: ;
433 endif
434
435 include $(srctree)/arch/$(ARCH)/Makefile
436
437 # Default kernel image to build when no specific target is given.
438 # KBUILD_IMAGE may be overruled on the commandline or
439 # set in the environment
440 # Also any assingments in arch/$(ARCH)/Makefiel take precedence over
441 # this default value
442 export KBUILD_IMAGE ?= vmlinux
443
444 # The all: target is the default when no target is given on the
445 # command line.
446 # This allow a user to issue only 'make' to build a kernel including modules
447 # Defaults vmlinux but it is usually overriden in the arch makefile
448 all: vmlinux
449
450 ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
451 CFLAGS          += -Os
452 else
453 CFLAGS          += -O2
454 endif
455
456 ifndef CONFIG_FRAME_POINTER
457 CFLAGS          += -fomit-frame-pointer
458 endif
459
460 ifdef CONFIG_DEBUG_INFO
461 CFLAGS          += -g
462 endif
463
464 # warn about C99 declaration after statement
465 CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,)
466
467 #
468 # INSTALL_PATH specifies where to place the updated kernel and system map
469 # images.  Uncomment if you want to place them anywhere other than root.
470 #
471
472 #export INSTALL_PATH=/boot
473
474 #
475 # INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
476 # relocations required by build roots.  This is not defined in the
477 # makefile but the arguement can be passed to make if needed.
478 #
479
480 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
481 INSTALL_MOD_PATH := $(PROFILE_DIR)/modules
482 # CONFIG_MIPS_BRCM End Broadcom changed code.
483
484 MODLIB  := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
485 export MODLIB
486
487
488 ifeq ($(KBUILD_EXTMOD),)
489 core-y          += kernel/ mm/ fs/ ipc/ security/ crypto/
490
491 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
492 vmlinux-dirs    := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
493                      $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
494                      $(brcmdrivers-y) $(brcmdrivers-m) \
495                      $(net-y) $(net-m) $(libs-y) $(libs-m)))
496
497 vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
498                      $(init-n) $(init-) \
499                      $(core-n) $(core-) $(drivers-n) $(drivers-) \
500                      $(brcmdrivers-n) $(brcmdrivers-) \
501                      $(net-n)  $(net-)  $(libs-n)    $(libs-))))
502 # CONFIG_MIPS_BRCM End Broadcom changed code.
503
504 init-y          := $(patsubst %/, %/built-in.o, $(init-y))
505 core-y          := $(patsubst %/, %/built-in.o, $(core-y))
506 drivers-y       := $(patsubst %/, %/built-in.o, $(drivers-y))
507 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
508 brcmdrivers-y   := $(patsubst %/, %/built-in.o, $(brcmdrivers-y))
509 # CONFIG_MIPS_BRCM End Broadcom changed code.
510 net-y           := $(patsubst %/, %/built-in.o, $(net-y))
511 libs-y1         := $(patsubst %/, %/lib.a, $(libs-y))
512 libs-y2         := $(patsubst %/, %/built-in.o, $(libs-y))
513 libs-y          := $(libs-y1) $(libs-y2)
514
515 # Build vmlinux
516 # ---------------------------------------------------------------------------
517
518 #       This is a bit tricky: If we need to relink vmlinux, we want
519 #       the version number incremented, which means recompile init/version.o
520 #       and relink init/init.o. However, we cannot do this during the
521 #       normal descending-into-subdirs phase, since at that time
522 #       we cannot yet know if we will need to relink vmlinux.
523 #       So we descend into init/ inside the rule for vmlinux again.
524 head-y += $(HEAD)
525 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
526 vmlinux-objs := $(head-y) $(init-y) $(core-y) $(libs-y) $(drivers-y) $(brcmdrivers-y) $(net-y)
527
528 quiet_cmd_vmlinux__ = LD      $@
529 define cmd_vmlinux__
530         $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) $(head-y) $(init-y) \
531         --start-group \
532         $(core-y) \
533         $(libs-y) \
534         $(drivers-y) \
535         $(brcmdrivers-y) \
536         $(net-y) \
537         --end-group \
538         $(filter .tmp_kallsyms%,$^) \
539         -o $@
540 endef
541 # CONFIG_MIPS_BRCM End Broadcom changed code.
542
543 #       set -e makes the rule exit immediately on error
544
545 define rule_vmlinux__
546         +set -e;                                                        \
547         $(if $(filter .tmp_kallsyms%,$^),,                              \
548           echo '  GEN     .version';                                    \
549           . $(srctree)/scripts/mkversion > .tmp_version;                \
550           mv -f .tmp_version .version;                                  \
551           $(MAKE) $(build)=init;                                        \
552         )                                                               \
553         $(if $($(quiet)cmd_vmlinux__),                                  \
554           echo '  $($(quiet)cmd_vmlinux__)' &&)                         \
555         $(cmd_vmlinux__);                                               \
556         echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
557 endef
558
559 do_system_map = $(NM) $(1) | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > $(2)
560
561 LDFLAGS_vmlinux += -T arch/$(ARCH)/kernel/vmlinux.lds.s
562
563 #       Generate section listing all symbols and add it into vmlinux
564 #       It's a three stage process:
565 #       o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is
566 #         empty
567 #         Running kallsyms on that gives us .tmp_kallsyms1.o with
568 #         the right size
569 #       o .tmp_vmlinux2 now has a __kallsyms section of the right size,
570 #         but due to the added section, some addresses have shifted
571 #         From here, we generate a correct .tmp_kallsyms2.o
572 #       o The correct .tmp_kallsyms2.o is linked into the final vmlinux.
573 #       o Verify that the System.map from vmlinux matches the map from
574 #         .tmp_vmlinux2, just in case we did not generate kallsyms correctly.
575 #       o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using
576 #         .tmp_vmlinux3 and .tmp_kallsyms3.o.  This is only meant as a
577 #         temporary bypass to allow the kernel to be built while the
578 #         maintainers work out what went wrong with kallsyms.
579
580 ifdef CONFIG_KALLSYMS
581
582 ifdef CONFIG_KALLSYMS_EXTRA_PASS
583 last_kallsyms := 3
584 else
585 last_kallsyms := 2
586 endif
587
588 kallsyms.o := .tmp_kallsyms$(last_kallsyms).o
589
590 define rule_verify_kallsyms
591         @$(call do_system_map, .tmp_vmlinux$(last_kallsyms), .tmp_System.map)
592         @cmp -s System.map .tmp_System.map || \
593                 (echo Inconsistent kallsyms data, try setting CONFIG_KALLSYMS_EXTRA_PASS ; rm .tmp_kallsyms* ; false)
594 endef
595
596 quiet_cmd_kallsyms = KSYM    $@
597 cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) $(foreach x,$(CONFIG_KALLSYMS_ALL),--all-symbols) > $@
598
599 .tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE
600         $(call if_changed_dep,as_o_S)
601
602 .tmp_kallsyms%.S: .tmp_vmlinux%
603         $(call cmd,kallsyms)
604
605 .tmp_vmlinux1: $(vmlinux-objs) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
606         $(call if_changed_rule,vmlinux__)
607
608 .tmp_vmlinux2: $(vmlinux-objs) .tmp_kallsyms1.o arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
609         $(call if_changed_rule,vmlinux__)
610
611 .tmp_vmlinux3: $(vmlinux-objs) .tmp_kallsyms2.o arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
612         $(call if_changed_rule,vmlinux__)
613
614 endif
615
616 #       Finally the vmlinux rule
617
618 define rule_vmlinux
619         $(rule_vmlinux__); \
620         $(call do_system_map, $@, System.map)
621         $(rule_verify_kallsyms)
622 endef
623
624 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
625 vmlinux: preparebrcmdriver $(vmlinux-objs) $(kallsyms.o) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
626         $(call if_changed_rule,vmlinux)
627 # CONFIG_MIPS_BRCM End Broadcom changed code.
628
629 #       The actual objects are generated when descending, 
630 #       make sure no implicit rule kicks in
631
632 $(sort $(vmlinux-objs)) arch/$(ARCH)/kernel/vmlinux.lds.s: $(vmlinux-dirs) ;
633
634 # Handle descending into subdirectories listed in $(vmlinux-dirs)
635 # Preset locale variables to speed up the build process. Limit locale
636 # tweaks to this spot to avoid wrong language settings when running
637 # make menuconfig etc.
638 # Error messages still appears in the original language
639
640 .PHONY: $(vmlinux-dirs)
641 $(vmlinux-dirs): prepare-all scripts
642         $(Q)$(MAKE) $(build)=$@
643
644 # Things we need to do before we recursively start building the kernel
645 # or the modules are listed in "prepare-all".
646 # A multi level approach is used. prepare1 is updated first, then prepare0.
647 # prepare-all is the collection point for the prepare targets.
648
649 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
650 .PHONY: prepare-all prepare prepare0 prepare1 prepare2 preparebrcmdriver
651
652 preparebrcmdriver:
653         $(Q)$(MAKE) -C $(BRCMDRIVERS_DIR)/opensource symlinks
654         $(Q)$(MAKE) -C $(BRCMDRIVERS_DIR)/broadcom symlinks
655 # CONFIG_MIPS_BRCM End Broadcom changed code.
656
657 # prepare 2 generate Makefile to be placed in output directory, if
658 # using a seperate output directory. This allows convinient use
659 # of make in output directory
660 prepare2:
661         $(Q)if [ ! $(srctree) -ef $(objtree) ]; then       \
662         $(CONFIG_SHELL) $(srctree)/scripts/mkmakefile      \
663             $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) \
664             > $(objtree)/Makefile;                         \
665         fi
666
667 # prepare1 is used to check if we are building in a separate output directory,
668 # and if so do:
669 # 1) Check that make has not been executed in the kernel src $(srctree)
670 # 2) Create the include2 directory, used for the second asm symlink
671
672 prepare1: prepare2
673 ifneq ($(KBUILD_SRC),)
674         @echo '  Using $(srctree) as source for kernel'
675         $(Q)if [ -h $(srctree)/include/asm -o -f $(srctree)/.config ]; then \
676                 echo "  $(srctree) is not clean, please run 'make mrproper'";\
677                 echo "  in the '$(srctree)' directory.";\
678                 /bin/false; \
679         fi;
680         $(Q)if [ ! -d include2 ]; then mkdir -p include2; fi;
681         $(Q)ln -fsn $(srctree)/include/asm-$(ARCH) include2/asm
682 endif
683
684 prepare0: prepare1 include/linux/version.h include/asm include/config/MARKER
685 ifneq ($(KBUILD_MODULES),)
686         $(Q)rm -rf $(MODVERDIR)
687         $(Q)mkdir -p $(MODVERDIR)
688 endif
689
690 # All the preparing..
691 prepare-all: prepare0 prepare
692
693 #       Leave this as default for preprocessing vmlinux.lds.S, which is now
694 #       done in arch/$(ARCH)/kernel/Makefile
695
696 export AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH)
697
698 # Single targets
699 # ---------------------------------------------------------------------------
700
701 %.s: %.c scripts FORCE
702         $(Q)$(MAKE) $(build)=$(@D) $@
703 %.i: %.c scripts FORCE
704         $(Q)$(MAKE) $(build)=$(@D) $@
705 %.o: %.c scripts FORCE
706         $(Q)$(MAKE) $(build)=$(@D) $@
707 %/:      scripts prepare FORCE
708         $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) $(build)=$(@D)
709 %.lst: %.c scripts FORCE
710         $(Q)$(MAKE) $(build)=$(@D) $@
711 %.s: %.S scripts FORCE
712         $(Q)$(MAKE) $(build)=$(@D) $@
713 %.o: %.S scripts FORCE
714         $(Q)$(MAKE) $(build)=$(@D) $@
715
716 #       FIXME: The asm symlink changes when $(ARCH) changes. That's
717 #       hard to detect, but I suppose "make mrproper" is a good idea
718 #       before switching between archs anyway.
719
720 include/asm:
721         @echo '  SYMLINK $@ -> include/asm-$(ARCH)'
722         $(Q)if [ ! -d include ]; then mkdir -p include; fi;
723         @ln -fsn asm-$(ARCH) $@
724
725 #       Split autoconf.h into include/linux/config/*
726
727 include/config/MARKER: include/linux/autoconf.h
728         @echo '  SPLIT   include/linux/autoconf.h -> include/config/*'
729         @scripts/basic/split-include include/linux/autoconf.h include/config
730         @touch $@
731
732 # Generate some files
733 # ---------------------------------------------------------------------------
734
735 #       version.h changes when $(KERNELRELEASE) etc change, as defined in
736 #       this Makefile
737
738 uts_len := 64
739
740 define filechk_version.h
741         if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
742           echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
743           exit 1; \
744         fi; \
745         (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
746           echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
747          echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \
748         )
749 endef
750
751 include/linux/version.h: Makefile
752         $(call filechk,version.h)
753
754 # ---------------------------------------------------------------------------
755
756 .PHONY: depend dep
757 depend dep:
758         @echo '*** Warning: make $@ is unnecessary now.'
759
760 # ---------------------------------------------------------------------------
761 # Modules
762
763 ifdef CONFIG_MODULES
764
765 #       By default, build modules as well
766
767 all: modules
768
769 #       Build modules
770
771 .PHONY: modules
772 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
773 modules: preparebrcmdriver $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux)
774 # CONFIG_MIPS_BRCM End Broadcom changed code.
775         @echo '  Building modules, stage 2.';
776         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
777
778
779 # Target to prepare building external modules
780 .PHONY: modules_prepare
781 modules_prepare: prepare-all scripts
782
783 # Target to install modules
784 .PHONY: modules_install
785 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
786 #modules_install: _modinst_ _modinst_post
787 #We have no need for it "_modinst_post"
788 modules_install: _modinst_ 
789 # CONFIG_MIPS_BRCM End Broadcom changed code.
790
791 .PHONY: _modinst_
792 _modinst_:
793 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
794 #       @if [ -z "`$(DEPMOD) -V | grep module-init-tools`" ]; then \
795 #               echo "Warning: you may need to install module-init-tools"; \
796 #               echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
797 #               sleep 1; \
798 #       fi
799 # CONFIG_MIPS_BRCM End Broadcom changed code.
800         @rm -rf $(MODLIB)/kernel
801         @rm -f $(MODLIB)/source
802         @mkdir -p $(MODLIB)/kernel
803 # CONFIG_MIPS_BRCM Begin Broadcom changed code  
804 #       @ln -s $(srctree) $(MODLIB)/source
805 #       @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
806 #               rm -f $(MODLIB)/build ; \
807 #               ln -s $(objtree) $(MODLIB)/build ; \
808 #       fi
809 # CONFIG_MIPS_BRCM End Broadcom changed code.   
810         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
811
812 # If System.map exists, run depmod.  This deliberately does not have a
813 # dependency on System.map since that would run the dependency tree on
814 # vmlinux.  This depmod is only for convenience to give the initial
815 # boot a modules.dep even before / is mounted read-write.  However the
816 # boot script depmod is the master version.
817 ifeq "$(strip $(INSTALL_MOD_PATH))" ""
818 depmod_opts     :=
819 else
820 depmod_opts     := -b $(INSTALL_MOD_PATH) -r
821 endif
822 .PHONY: _modinst_post
823 _modinst_post: _modinst_
824         if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
825
826 else # CONFIG_MODULES
827
828 # Modules not configured
829 # ---------------------------------------------------------------------------
830
831 modules modules_install: FORCE
832         @echo
833         @echo "The present kernel configuration has modules disabled."
834         @echo "Type 'make config' and enable loadable module support."
835         @echo "Then build a kernel with module support enabled."
836         @echo
837         @exit 1
838
839 endif # CONFIG_MODULES
840
841 # Generate asm-offsets.h 
842 # ---------------------------------------------------------------------------
843
844 define filechk_gen-asm-offsets
845         (set -e; \
846          echo "#ifndef __ASM_OFFSETS_H__"; \
847          echo "#define __ASM_OFFSETS_H__"; \
848          echo "/*"; \
849          echo " * DO NOT MODIFY."; \
850          echo " *"; \
851          echo " * This file was generated by arch/$(ARCH)/Makefile"; \
852          echo " *"; \
853          echo " */"; \
854          echo ""; \
855          sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
856          echo ""; \
857          echo "#endif" )
858 endef
859
860
861 ###
862 # Cleaning is done on three levels.
863 # make clean     Delete most generated files
864 #                Leave enough to build external modules
865 # make mrproper  Delete the current configuration, and all generated files
866 # make distclean Remove editor backup files, patch leftover files and the like
867
868 # Directories & files removed with 'make clean'
869 CLEAN_DIRS  += $(MODVERDIR)
870 CLEAN_FILES +=  vmlinux System.map \
871                 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
872
873 # Directories & files removed with 'make mrproper'
874 MRPROPER_DIRS  += include/config include2
875 MRPROPER_FILES += .config .config.old include/asm .version \
876                   include/linux/autoconf.h include/linux/version.h \
877                   Module.symvers tags TAGS cscope*
878
879 # clean - Delete most, but leave enough to build external modules
880 #
881 clean: rm-dirs  := $(CLEAN_DIRS)
882 clean: rm-files := $(CLEAN_FILES)
883 clean-dirs      := $(addprefix _clean_,$(vmlinux-alldirs))
884
885 .PHONY: $(clean-dirs) clean archclean
886 $(clean-dirs):
887         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
888
889 clean: archclean $(clean-dirs)
890         $(call cmd,rmdirs)
891         $(call cmd,rmfiles)
892 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
893         @find . $(BRCMDRIVERS) $(RCS_FIND_IGNORE) \
894                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
895                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
896                 -type f -print | xargs rm -f
897 # CONFIG_MIPS_BRCM End Broadcom changed code.
898
899 # mrproper - Delete all generated files, including .config
900 #
901 mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
902 mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
903 mrproper-dirs      := $(addprefix _mrproper_,Documentation/DocBook scripts)
904
905 .PHONY: $(mrproper-dirs) mrproper archmrproper
906 $(mrproper-dirs):
907         $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
908
909 mrproper: clean archmrproper $(mrproper-dirs)
910         $(call cmd,rmdirs)
911         $(call cmd,rmfiles)
912
913 # distclean
914 #
915 .PHONY: distclean
916
917 distclean: mrproper
918         @find $(srctree) $(RCS_FIND_IGNORE) \
919                 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
920                 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
921                 -o -name '.*.rej' -o -size 0 \
922                 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
923                 -type f -print | xargs rm -f
924
925
926 # Packaging of the kernel to various formats
927 # ---------------------------------------------------------------------------
928 # rpm target kept for backward compatibility
929 package-dir     := $(srctree)/scripts/package
930
931 .PHONY: %-pkg rpm
932
933 %pkg: FORCE
934         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
935 rpm: FORCE
936         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
937
938
939 # Brief documentation of the typical targets used
940 # ---------------------------------------------------------------------------
941
942 boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
943 boards := $(notdir $(boards))
944
945 help:
946         @echo  'Cleaning targets:'
947         @echo  '  clean           - remove most generated files but keep the config'
948         @echo  '  mrproper        - remove all generated files + config + various backup files'
949         @echo  ''
950         @echo  'Configuration targets:'
951         @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
952         @echo  ''
953         @echo  'Other generic targets:'
954         @echo  '  all             - Build all targets marked with [*]'
955         @echo  '* vmlinux         - Build the bare kernel'
956         @echo  '* modules         - Build all modules'
957         @echo  '  modules_install - Install all modules'
958         @echo  '  dir/            - Build all files in dir and below'
959         @echo  '  dir/file.[ois]  - Build specified target only'
960         @echo  '  rpm             - Build a kernel as an RPM package'
961         @echo  '  tags/TAGS       - Generate tags file for editors'
962         @echo  '  cscope          - Generate cscope index'
963         @echo  '  checkstack      - Generate a list of stack hogs'
964         @echo  'Kernel packaging:'
965         @$(MAKE) -f $(package-dir)/Makefile help
966         @echo  ''
967         @echo  'Documentation targets:'
968         @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
969         @echo  ''
970         @echo  'Architecture specific targets ($(ARCH)):'
971         @$(if $(archhelp),$(archhelp),\
972                 echo '  No architecture specific help defined for $(ARCH)')
973         @echo  ''
974         @$(if $(boards), \
975                 $(foreach b, $(boards), \
976                 printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
977                 echo '')
978
979         @echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
980         @echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
981         @echo  '  make C=1   [targets] Check all c source with checker tool'
982         @echo  ''
983         @echo  'Execute "make" or "make all" to build all targets marked with [*] '
984         @echo  'For further info see the ./README file'
985
986
987 # Documentation targets
988 # ---------------------------------------------------------------------------
989 %docs: scripts_basic FORCE
990         $(Q)$(MAKE) $(build)=Documentation/DocBook $@
991
992 else # KBUILD_EXTMOD
993
994 ###
995 # External module support.
996 # When building external modules the kernel used as basis is considered
997 # read-only, and no consistency checks are made and the make
998 # system is not used on the basis kernel. If updates are required
999 # in the basis kernel ordinary make commands (without M=...) must
1000 # be used.
1001 #
1002 # The following are the only valid targets when building external
1003 # modules.
1004 # make M=dir clean     Delete all automatically generated files
1005 # make M=dir modules   Make all modules in specified dir
1006 # make M=dir           Same as 'make M=dir modules'
1007 # make M=dir modules_install
1008 #                      Install the modules build in the module directory
1009 #                      Assumes install directory is already created
1010
1011 # We are always building modules
1012 KBUILD_MODULES := 1
1013 .PHONY: crmodverdir
1014 crmodverdir:
1015         $(Q)mkdir -p $(MODVERDIR)
1016
1017 module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
1018 .PHONY: $(module-dirs) modules
1019 $(module-dirs): crmodverdir
1020         $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
1021
1022 modules: $(module-dirs)
1023         @echo '  Building modules, stage 2.';
1024         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
1025
1026 .PHONY: modules_install
1027 modules_install:
1028         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
1029
1030 clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
1031
1032 .PHONY: $(clean-dirs) clean
1033 $(clean-dirs):
1034         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1035
1036 clean:  rm-dirs := $(MODVERDIR)
1037 clean: $(clean-dirs)
1038         $(call cmd,rmdirs)
1039         @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \
1040                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1041                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
1042                 -type f -print | xargs rm -f
1043
1044 help:
1045         @echo  '  Building external modules.'
1046         @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
1047         @echo  ''
1048         @echo  '  modules         - default target, build the module(s)'
1049         @echo  '  modules_install - install the module'
1050         @echo  '  clean           - remove generated files in module directory only'
1051         @echo  ''
1052 endif # KBUILD_EXTMOD
1053
1054 # Generate tags for editors
1055 # ---------------------------------------------------------------------------
1056
1057 define all-sources
1058         ( find $(srctree) $(RCS_FIND_IGNORE) \
1059                \( -name include -o -name arch \) -prune -o \
1060                -name '*.[chS]' -print; \
1061           find $(srctree)/arch/$(ARCH) $(RCS_FIND_IGNORE) \
1062                -name '*.[chS]' -print; \
1063           find $(srctree)/security/selinux/include $(RCS_FIND_IGNORE) \
1064                -name '*.[chS]' -print; \
1065           find $(srctree)/include $(RCS_FIND_IGNORE) \
1066                \( -name config -o -name 'asm-*' \) -prune \
1067                -o -name '*.[chS]' -print; \
1068           find $(srctree)/include/asm-$(ARCH) $(RCS_FIND_IGNORE) \
1069                -name '*.[chS]' -print; \
1070           find $(srctree)/include/asm-generic $(RCS_FIND_IGNORE) \
1071                -name '*.[chS]' -print )
1072 endef
1073
1074 quiet_cmd_cscope-file = FILELST cscope.files
1075       cmd_cscope-file = $(all-sources) > cscope.files
1076
1077 quiet_cmd_cscope = MAKE    cscope.out
1078       cmd_cscope = cscope -k -b -q
1079
1080 cscope: FORCE
1081         $(call cmd,cscope-file)
1082         $(call cmd,cscope)
1083
1084 quiet_cmd_TAGS = MAKE   $@
1085 cmd_TAGS = $(all-sources) | etags -
1086
1087 #       Exuberant ctags works better with -I
1088
1089 quiet_cmd_tags = MAKE   $@
1090 define cmd_tags
1091         rm -f $@; \
1092         CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
1093         $(all-sources) | xargs ctags $$CTAGSF -a
1094 endef
1095
1096 TAGS: FORCE
1097         $(call cmd,TAGS)
1098
1099 tags: FORCE
1100         $(call cmd,tags)
1101
1102
1103 # Scripts to check various things for consistency
1104 # ---------------------------------------------------------------------------
1105
1106 configcheck:
1107         find * $(RCS_FIND_IGNORE) \
1108                 -name '*.[hcS]' -type f -print | sort \
1109                 | xargs $(PERL) -w scripts/checkconfig.pl
1110
1111 includecheck:
1112         find * $(RCS_FIND_IGNORE) \
1113                 -name '*.[hcS]' -type f -print | sort \
1114                 | xargs $(PERL) -w scripts/checkincludes.pl
1115
1116 versioncheck:
1117         find * $(RCS_FIND_IGNORE) \
1118                 -name '*.[hcS]' -type f -print | sort \
1119                 | xargs $(PERL) -w scripts/checkversion.pl
1120
1121 buildcheck:
1122         $(PERL) scripts/reference_discarded.pl
1123         $(PERL) scripts/reference_init.pl
1124
1125 endif #ifeq ($(config-targets),1)
1126 endif #ifeq ($(mixed-targets),1)
1127
1128 .PHONY: checkstack
1129 checkstack:
1130         $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
1131         $(PERL) $(src)/scripts/checkstack.pl $(ARCH)
1132
1133 # FIXME Should go into a make.lib or something 
1134 # ===========================================================================
1135
1136 quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
1137       cmd_rmdirs = rm -rf $(rm-dirs)
1138
1139 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
1140       cmd_rmfiles = rm -f $(rm-files)
1141
1142
1143 a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(AFLAGS_KERNEL) \
1144           $(NOSTDINC_FLAGS) $(CPPFLAGS) \
1145           $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o)
1146
1147 quiet_cmd_as_o_S = AS      $@
1148 cmd_as_o_S       = $(CC) $(a_flags) -c -o $@ $<
1149
1150 # read all saved command lines
1151
1152 targets := $(wildcard $(sort $(targets)))
1153 cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
1154
1155 ifneq ($(cmd_files),)
1156   $(cmd_files): ;       # Do not try to update included dependency files
1157   include $(cmd_files)
1158 endif
1159
1160 # execute the command and also postprocess generated .d dependencies
1161 # file
1162
1163 if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\
1164                           $(filter-out $(cmd_$(1)),$(cmd_$@))\
1165                           $(filter-out $(cmd_$@),$(cmd_$(1)))),\
1166         @set -e; \
1167         $(if $($(quiet)cmd_$(1)),echo '  $(subst ','\'',$($(quiet)cmd_$(1)))';) \
1168         $(cmd_$(1)); \
1169         scripts/basic/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \
1170         rm -f $(depfile); \
1171         mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd)
1172
1173 # Usage: $(call if_changed_rule,foo)
1174 # will check if $(cmd_foo) changed, or any of the prequisites changed,
1175 # and if so will execute $(rule_foo)
1176
1177 if_changed_rule = $(if $(strip $? \
1178                                $(filter-out $(cmd_$(1)),$(cmd_$(@F)))\
1179                                $(filter-out $(cmd_$(@F)),$(cmd_$(1)))),\
1180                        @$(rule_$(1)))
1181
1182 # If quiet is set, only print short version of command
1183
1184 cmd = @$(if $($(quiet)cmd_$(1)),echo '  $($(quiet)cmd_$(1))' &&) $(cmd_$(1))
1185
1186 # filechk is used to check if the content of a generated file is updated.
1187 # Sample usage:
1188 # define filechk_sample
1189 #       echo $KERNELRELEASE
1190 # endef
1191 # version.h : Makefile
1192 #       $(call filechk,sample)
1193 # The rule defined shall write to stdout the content of the new file.
1194 # The existing file will be compared with the new one.
1195 # - If no file exist it is created
1196 # - If the content differ the new file is used
1197 # - If they are equal no change, and no timestamp update
1198
1199 define filechk
1200         @set -e;                                \
1201         echo '  CHK     $@';                    \
1202         mkdir -p $(dir $@);                     \
1203         $(filechk_$(1)) < $< > $@.tmp;          \
1204         if [ -r $@ ] && cmp -s $@ $@.tmp; then  \
1205                 rm -f $@.tmp;                   \
1206         else                                    \
1207                 echo '  UPD     $@';            \
1208                 mv -f $@.tmp $@;                \
1209         fi
1210 endef
1211
1212 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=dir
1213 # Usage:
1214 # $(Q)$(MAKE) $(build)=dir
1215 build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
1216
1217 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1218 # Usage:
1219 # $(Q)$(MAKE) $(clean)=dir
1220 clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1221
1222 #       $(call descend,<dir>,<target>)
1223 #       Recursively call a sub-make in <dir> with target <target>
1224 # Usage is deprecated, because make does not see this as an invocation of make.
1225 descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2)
1226
1227 endif   # skip-makefile
1228
1229 FORCE: