and added files
[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)/ $(INC_BRCMSHARED_SRC_PATH)/
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 # USR9108 path to Led driver
468 CFLAGS += -I$(INC_BRCMDRIVER_PUB_PATH)/$(BRCM_BOARD)
469
470 #
471 # INSTALL_PATH specifies where to place the updated kernel and system map
472 # images.  Uncomment if you want to place them anywhere other than root.
473 #
474
475 #export INSTALL_PATH=/boot
476
477 #
478 # INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
479 # relocations required by build roots.  This is not defined in the
480 # makefile but the arguement can be passed to make if needed.
481 #
482
483 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
484 INSTALL_MOD_PATH := $(PROFILE_DIR)/modules
485 # CONFIG_MIPS_BRCM End Broadcom changed code.
486
487 MODLIB  := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
488 export MODLIB
489
490
491 ifeq ($(KBUILD_EXTMOD),)
492 core-y          += kernel/ mm/ fs/ ipc/ security/ crypto/
493
494 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
495 vmlinux-dirs    := $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
496                      $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
497                      $(brcmdrivers-y) $(brcmdrivers-m) \
498                      $(net-y) $(net-m) $(libs-y) $(libs-m)))
499
500 vmlinux-alldirs := $(sort $(vmlinux-dirs) $(patsubst %/,%,$(filter %/, \
501                      $(init-n) $(init-) \
502                      $(core-n) $(core-) $(drivers-n) $(drivers-) \
503                      $(brcmdrivers-n) $(brcmdrivers-) \
504                      $(net-n)  $(net-)  $(libs-n)    $(libs-))))
505 # CONFIG_MIPS_BRCM End Broadcom changed code.
506
507 init-y          := $(patsubst %/, %/built-in.o, $(init-y))
508 core-y          := $(patsubst %/, %/built-in.o, $(core-y))
509 drivers-y       := $(patsubst %/, %/built-in.o, $(drivers-y))
510 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
511 brcmdrivers-y   := $(patsubst %/, %/built-in.o, $(brcmdrivers-y))
512 # CONFIG_MIPS_BRCM End Broadcom changed code.
513 net-y           := $(patsubst %/, %/built-in.o, $(net-y))
514 libs-y1         := $(patsubst %/, %/lib.a, $(libs-y))
515 libs-y2         := $(patsubst %/, %/built-in.o, $(libs-y))
516 libs-y          := $(libs-y1) $(libs-y2)
517
518 # Build vmlinux
519 # ---------------------------------------------------------------------------
520
521 #       This is a bit tricky: If we need to relink vmlinux, we want
522 #       the version number incremented, which means recompile init/version.o
523 #       and relink init/init.o. However, we cannot do this during the
524 #       normal descending-into-subdirs phase, since at that time
525 #       we cannot yet know if we will need to relink vmlinux.
526 #       So we descend into init/ inside the rule for vmlinux again.
527 head-y += $(HEAD)
528 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
529 vmlinux-objs := $(head-y) $(init-y) $(core-y) $(libs-y) $(drivers-y) $(brcmdrivers-y) $(net-y)
530
531 quiet_cmd_vmlinux__ = LD      $@
532 define cmd_vmlinux__
533         $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) $(head-y) $(init-y) \
534         --start-group \
535         $(core-y) \
536         $(libs-y) \
537         $(drivers-y) \
538         $(brcmdrivers-y) \
539         $(net-y) \
540         --end-group \
541         $(filter .tmp_kallsyms%,$^) \
542         -o $@
543 endef
544 # CONFIG_MIPS_BRCM End Broadcom changed code.
545
546 #       set -e makes the rule exit immediately on error
547
548 define rule_vmlinux__
549         +set -e;                                                        \
550         $(if $(filter .tmp_kallsyms%,$^),,                              \
551           echo '  GEN     .version';                                    \
552           . $(srctree)/scripts/mkversion > .tmp_version;                \
553           mv -f .tmp_version .version;                                  \
554           $(MAKE) $(build)=init;                                        \
555         )                                                               \
556         $(if $($(quiet)cmd_vmlinux__),                                  \
557           echo '  $($(quiet)cmd_vmlinux__)' &&)                         \
558         $(cmd_vmlinux__);                                               \
559         echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
560 endef
561
562 do_system_map = $(NM) $(1) | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > $(2)
563
564 LDFLAGS_vmlinux += -T arch/$(ARCH)/kernel/vmlinux.lds.s
565
566 #       Generate section listing all symbols and add it into vmlinux
567 #       It's a three stage process:
568 #       o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is
569 #         empty
570 #         Running kallsyms on that gives us .tmp_kallsyms1.o with
571 #         the right size
572 #       o .tmp_vmlinux2 now has a __kallsyms section of the right size,
573 #         but due to the added section, some addresses have shifted
574 #         From here, we generate a correct .tmp_kallsyms2.o
575 #       o The correct .tmp_kallsyms2.o is linked into the final vmlinux.
576 #       o Verify that the System.map from vmlinux matches the map from
577 #         .tmp_vmlinux2, just in case we did not generate kallsyms correctly.
578 #       o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using
579 #         .tmp_vmlinux3 and .tmp_kallsyms3.o.  This is only meant as a
580 #         temporary bypass to allow the kernel to be built while the
581 #         maintainers work out what went wrong with kallsyms.
582
583 ifdef CONFIG_KALLSYMS
584
585 ifdef CONFIG_KALLSYMS_EXTRA_PASS
586 last_kallsyms := 3
587 else
588 last_kallsyms := 2
589 endif
590
591 kallsyms.o := .tmp_kallsyms$(last_kallsyms).o
592
593 define rule_verify_kallsyms
594         @$(call do_system_map, .tmp_vmlinux$(last_kallsyms), .tmp_System.map)
595         @cmp -s System.map .tmp_System.map || \
596                 (echo Inconsistent kallsyms data, try setting CONFIG_KALLSYMS_EXTRA_PASS ; rm .tmp_kallsyms* ; false)
597 endef
598
599 quiet_cmd_kallsyms = KSYM    $@
600 cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) $(foreach x,$(CONFIG_KALLSYMS_ALL),--all-symbols) > $@
601
602 .tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE
603         $(call if_changed_dep,as_o_S)
604
605 .tmp_kallsyms%.S: .tmp_vmlinux%
606         $(call cmd,kallsyms)
607
608 .tmp_vmlinux1: $(vmlinux-objs) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
609         $(call if_changed_rule,vmlinux__)
610
611 .tmp_vmlinux2: $(vmlinux-objs) .tmp_kallsyms1.o arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
612         $(call if_changed_rule,vmlinux__)
613
614 .tmp_vmlinux3: $(vmlinux-objs) .tmp_kallsyms2.o arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
615         $(call if_changed_rule,vmlinux__)
616
617 endif
618
619 #       Finally the vmlinux rule
620
621 define rule_vmlinux
622         $(rule_vmlinux__); \
623         $(call do_system_map, $@, System.map)
624         $(rule_verify_kallsyms)
625 endef
626
627 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
628 vmlinux: preparebrcmdriver $(vmlinux-objs) $(kallsyms.o) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
629         $(call if_changed_rule,vmlinux)
630 # CONFIG_MIPS_BRCM End Broadcom changed code.
631
632 #       The actual objects are generated when descending, 
633 #       make sure no implicit rule kicks in
634
635 $(sort $(vmlinux-objs)) arch/$(ARCH)/kernel/vmlinux.lds.s: $(vmlinux-dirs) ;
636
637 # Handle descending into subdirectories listed in $(vmlinux-dirs)
638 # Preset locale variables to speed up the build process. Limit locale
639 # tweaks to this spot to avoid wrong language settings when running
640 # make menuconfig etc.
641 # Error messages still appears in the original language
642
643 .PHONY: $(vmlinux-dirs)
644 $(vmlinux-dirs): prepare-all scripts
645         $(Q)$(MAKE) $(build)=$@
646
647 # Things we need to do before we recursively start building the kernel
648 # or the modules are listed in "prepare-all".
649 # A multi level approach is used. prepare1 is updated first, then prepare0.
650 # prepare-all is the collection point for the prepare targets.
651
652 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
653 .PHONY: prepare-all prepare prepare0 prepare1 prepare2 preparebrcmdriver
654
655 preparebrcmdriver:
656         $(Q)$(MAKE) -C $(BRCMDRIVERS_DIR) symlinks
657 # CONFIG_MIPS_BRCM End Broadcom changed code.
658
659 # prepare 2 generate Makefile to be placed in output directory, if
660 # using a seperate output directory. This allows convinient use
661 # of make in output directory
662 prepare2:
663         $(Q)if [ ! $(srctree) -ef $(objtree) ]; then       \
664         $(CONFIG_SHELL) $(srctree)/scripts/mkmakefile      \
665             $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) \
666             > $(objtree)/Makefile;                         \
667         fi
668
669 # prepare1 is used to check if we are building in a separate output directory,
670 # and if so do:
671 # 1) Check that make has not been executed in the kernel src $(srctree)
672 # 2) Create the include2 directory, used for the second asm symlink
673
674 prepare1: prepare2
675 ifneq ($(KBUILD_SRC),)
676         @echo '  Using $(srctree) as source for kernel'
677         $(Q)if [ -h $(srctree)/include/asm -o -f $(srctree)/.config ]; then \
678                 echo "  $(srctree) is not clean, please run 'make mrproper'";\
679                 echo "  in the '$(srctree)' directory.";\
680                 /bin/false; \
681         fi;
682         $(Q)if [ ! -d include2 ]; then mkdir -p include2; fi;
683         $(Q)ln -fsn $(srctree)/include/asm-$(ARCH) include2/asm
684 endif
685
686 prepare0: prepare1 include/linux/version.h include/asm include/config/MARKER
687 ifneq ($(KBUILD_MODULES),)
688         $(Q)rm -rf $(MODVERDIR)
689         $(Q)mkdir -p $(MODVERDIR)
690 endif
691
692 # All the preparing..
693 prepare-all: prepare0 prepare
694
695 #       Leave this as default for preprocessing vmlinux.lds.S, which is now
696 #       done in arch/$(ARCH)/kernel/Makefile
697
698 export AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH)
699
700 # Single targets
701 # ---------------------------------------------------------------------------
702
703 %.s: %.c scripts FORCE
704         $(Q)$(MAKE) $(build)=$(@D) $@
705 %.i: %.c scripts FORCE
706         $(Q)$(MAKE) $(build)=$(@D) $@
707 %.o: %.c scripts FORCE
708         $(Q)$(MAKE) $(build)=$(@D) $@
709 %/:      scripts prepare FORCE
710         $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) $(build)=$(@D)
711 %.lst: %.c scripts FORCE
712         $(Q)$(MAKE) $(build)=$(@D) $@
713 %.s: %.S scripts FORCE
714         $(Q)$(MAKE) $(build)=$(@D) $@
715 %.o: %.S scripts FORCE
716         $(Q)$(MAKE) $(build)=$(@D) $@
717
718 #       FIXME: The asm symlink changes when $(ARCH) changes. That's
719 #       hard to detect, but I suppose "make mrproper" is a good idea
720 #       before switching between archs anyway.
721
722 include/asm:
723         @echo '  SYMLINK $@ -> include/asm-$(ARCH)'
724         $(Q)if [ ! -d include ]; then mkdir -p include; fi;
725         @ln -fsn asm-$(ARCH) $@
726
727 #       Split autoconf.h into include/linux/config/*
728
729 include/config/MARKER: include/linux/autoconf.h
730         @echo '  SPLIT   include/linux/autoconf.h -> include/config/*'
731         @scripts/basic/split-include include/linux/autoconf.h include/config
732         @touch $@
733
734 # Generate some files
735 # ---------------------------------------------------------------------------
736
737 #       version.h changes when $(KERNELRELEASE) etc change, as defined in
738 #       this Makefile
739
740 uts_len := 64
741
742 define filechk_version.h
743         if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
744           echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
745           exit 1; \
746         fi; \
747         (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
748           echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
749          echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \
750         )
751 endef
752
753 include/linux/version.h: Makefile
754         $(call filechk,version.h)
755
756 # ---------------------------------------------------------------------------
757
758 .PHONY: depend dep
759 depend dep:
760         @echo '*** Warning: make $@ is unnecessary now.'
761
762 # ---------------------------------------------------------------------------
763 # Modules
764
765 ifdef CONFIG_MODULES
766
767 #       By default, build modules as well
768
769 all: modules
770
771 #       Build modules
772
773 .PHONY: modules
774 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
775 modules: preparebrcmdriver $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux)
776 # CONFIG_MIPS_BRCM End Broadcom changed code.
777         @echo '  Building modules, stage 2.';
778         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
779
780
781 # Target to prepare building external modules
782 .PHONY: modules_prepare
783 modules_prepare: prepare-all scripts
784
785 # Target to install modules
786 .PHONY: modules_install
787 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
788 #modules_install: _modinst_ _modinst_post
789 #We have no need for it "_modinst_post"
790 modules_install: _modinst_ 
791 # CONFIG_MIPS_BRCM End Broadcom changed code.
792
793 .PHONY: _modinst_
794 _modinst_:
795 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
796 #       @if [ -z "`$(DEPMOD) -V | grep module-init-tools`" ]; then \
797 #               echo "Warning: you may need to install module-init-tools"; \
798 #               echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
799 #               sleep 1; \
800 #       fi
801 # CONFIG_MIPS_BRCM End Broadcom changed code.
802         @rm -rf $(MODLIB)/kernel
803         @rm -f $(MODLIB)/source
804         @mkdir -p $(MODLIB)/kernel
805 # CONFIG_MIPS_BRCM Begin Broadcom changed code  
806 #       @ln -s $(srctree) $(MODLIB)/source
807 #       @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
808 #               rm -f $(MODLIB)/build ; \
809 #               ln -s $(objtree) $(MODLIB)/build ; \
810 #       fi
811 # CONFIG_MIPS_BRCM End Broadcom changed code.   
812         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
813
814 # If System.map exists, run depmod.  This deliberately does not have a
815 # dependency on System.map since that would run the dependency tree on
816 # vmlinux.  This depmod is only for convenience to give the initial
817 # boot a modules.dep even before / is mounted read-write.  However the
818 # boot script depmod is the master version.
819 ifeq "$(strip $(INSTALL_MOD_PATH))" ""
820 depmod_opts     :=
821 else
822 depmod_opts     := -b $(INSTALL_MOD_PATH) -r
823 endif
824 .PHONY: _modinst_post
825 _modinst_post: _modinst_
826         if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
827
828 else # CONFIG_MODULES
829
830 # Modules not configured
831 # ---------------------------------------------------------------------------
832
833 modules modules_install: FORCE
834         @echo
835         @echo "The present kernel configuration has modules disabled."
836         @echo "Type 'make config' and enable loadable module support."
837         @echo "Then build a kernel with module support enabled."
838         @echo
839         @exit 1
840
841 endif # CONFIG_MODULES
842
843 # Generate asm-offsets.h 
844 # ---------------------------------------------------------------------------
845
846 define filechk_gen-asm-offsets
847         (set -e; \
848          echo "#ifndef __ASM_OFFSETS_H__"; \
849          echo "#define __ASM_OFFSETS_H__"; \
850          echo "/*"; \
851          echo " * DO NOT MODIFY."; \
852          echo " *"; \
853          echo " * This file was generated by arch/$(ARCH)/Makefile"; \
854          echo " *"; \
855          echo " */"; \
856          echo ""; \
857          sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
858          echo ""; \
859          echo "#endif" )
860 endef
861
862
863 ###
864 # Cleaning is done on three levels.
865 # make clean     Delete most generated files
866 #                Leave enough to build external modules
867 # make mrproper  Delete the current configuration, and all generated files
868 # make distclean Remove editor backup files, patch leftover files and the like
869
870 # Directories & files removed with 'make clean'
871 CLEAN_DIRS  += $(MODVERDIR)
872 CLEAN_FILES +=  vmlinux System.map \
873                 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
874
875 # Directories & files removed with 'make mrproper'
876 MRPROPER_DIRS  += include/config include2
877 MRPROPER_FILES += .config .config.old include/asm .version \
878                   include/linux/autoconf.h include/linux/version.h \
879                   Module.symvers tags TAGS cscope*
880
881 # clean - Delete most, but leave enough to build external modules
882 #
883 clean: rm-dirs  := $(CLEAN_DIRS)
884 clean: rm-files := $(CLEAN_FILES)
885 clean-dirs      := $(addprefix _clean_,$(vmlinux-alldirs))
886
887 .PHONY: $(clean-dirs) clean archclean
888 $(clean-dirs):
889         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
890
891 clean: archclean $(clean-dirs)
892         $(call cmd,rmdirs)
893         $(call cmd,rmfiles)
894 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
895         @find . $(BRCMDRIVERS) $(RCS_FIND_IGNORE) \
896                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
897                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
898                 -type f -print | xargs rm -f
899 # CONFIG_MIPS_BRCM End Broadcom changed code.
900
901 # mrproper - Delete all generated files, including .config
902 #
903 mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
904 mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
905 mrproper-dirs      := $(addprefix _mrproper_,Documentation/DocBook scripts)
906
907 .PHONY: $(mrproper-dirs) mrproper archmrproper
908 $(mrproper-dirs):
909         $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
910
911 mrproper: clean archmrproper $(mrproper-dirs)
912         $(call cmd,rmdirs)
913         $(call cmd,rmfiles)
914
915 # distclean
916 #
917 .PHONY: distclean
918
919 distclean: mrproper
920         @find $(srctree) $(RCS_FIND_IGNORE) \
921                 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
922                 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
923                 -o -name '.*.rej' -o -size 0 \
924                 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
925                 -type f -print | xargs rm -f
926
927
928 # Packaging of the kernel to various formats
929 # ---------------------------------------------------------------------------
930 # rpm target kept for backward compatibility
931 package-dir     := $(srctree)/scripts/package
932
933 .PHONY: %-pkg rpm
934
935 %pkg: FORCE
936         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
937 rpm: FORCE
938         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
939
940
941 # Brief documentation of the typical targets used
942 # ---------------------------------------------------------------------------
943
944 boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
945 boards := $(notdir $(boards))
946
947 help:
948         @echo  'Cleaning targets:'
949         @echo  '  clean           - remove most generated files but keep the config'
950         @echo  '  mrproper        - remove all generated files + config + various backup files'
951         @echo  ''
952         @echo  'Configuration targets:'
953         @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
954         @echo  ''
955         @echo  'Other generic targets:'
956         @echo  '  all             - Build all targets marked with [*]'
957         @echo  '* vmlinux         - Build the bare kernel'
958         @echo  '* modules         - Build all modules'
959         @echo  '  modules_install - Install all modules'
960         @echo  '  dir/            - Build all files in dir and below'
961         @echo  '  dir/file.[ois]  - Build specified target only'
962         @echo  '  rpm             - Build a kernel as an RPM package'
963         @echo  '  tags/TAGS       - Generate tags file for editors'
964         @echo  '  cscope          - Generate cscope index'
965         @echo  '  checkstack      - Generate a list of stack hogs'
966         @echo  'Kernel packaging:'
967         @$(MAKE) -f $(package-dir)/Makefile help
968         @echo  ''
969         @echo  'Documentation targets:'
970         @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
971         @echo  ''
972         @echo  'Architecture specific targets ($(ARCH)):'
973         @$(if $(archhelp),$(archhelp),\
974                 echo '  No architecture specific help defined for $(ARCH)')
975         @echo  ''
976         @$(if $(boards), \
977                 $(foreach b, $(boards), \
978                 printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
979                 echo '')
980
981         @echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
982         @echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
983         @echo  '  make C=1   [targets] Check all c source with checker tool'
984         @echo  ''
985         @echo  'Execute "make" or "make all" to build all targets marked with [*] '
986         @echo  'For further info see the ./README file'
987
988
989 # Documentation targets
990 # ---------------------------------------------------------------------------
991 %docs: scripts_basic FORCE
992         $(Q)$(MAKE) $(build)=Documentation/DocBook $@
993
994 else # KBUILD_EXTMOD
995
996 ###
997 # External module support.
998 # When building external modules the kernel used as basis is considered
999 # read-only, and no consistency checks are made and the make
1000 # system is not used on the basis kernel. If updates are required
1001 # in the basis kernel ordinary make commands (without M=...) must
1002 # be used.
1003 #
1004 # The following are the only valid targets when building external
1005 # modules.
1006 # make M=dir clean     Delete all automatically generated files
1007 # make M=dir modules   Make all modules in specified dir
1008 # make M=dir           Same as 'make M=dir modules'
1009 # make M=dir modules_install
1010 #                      Install the modules build in the module directory
1011 #                      Assumes install directory is already created
1012
1013 # We are always building modules
1014 KBUILD_MODULES := 1
1015 .PHONY: crmodverdir
1016 crmodverdir:
1017         $(Q)mkdir -p $(MODVERDIR)
1018
1019 module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
1020 .PHONY: $(module-dirs) modules
1021 $(module-dirs): crmodverdir
1022         $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
1023
1024 modules: $(module-dirs)
1025         @echo '  Building modules, stage 2.';
1026         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
1027
1028 .PHONY: modules_install
1029 modules_install:
1030         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
1031
1032 clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
1033
1034 .PHONY: $(clean-dirs) clean
1035 $(clean-dirs):
1036         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1037
1038 clean:  rm-dirs := $(MODVERDIR)
1039 clean: $(clean-dirs)
1040         $(call cmd,rmdirs)
1041         @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \
1042                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1043                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
1044                 -type f -print | xargs rm -f
1045
1046 help:
1047         @echo  '  Building external modules.'
1048         @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
1049         @echo  ''
1050         @echo  '  modules         - default target, build the module(s)'
1051         @echo  '  modules_install - install the module'
1052         @echo  '  clean           - remove generated files in module directory only'
1053         @echo  ''
1054 endif # KBUILD_EXTMOD
1055
1056 # Generate tags for editors
1057 # ---------------------------------------------------------------------------
1058
1059 define all-sources
1060         ( find $(srctree) $(RCS_FIND_IGNORE) \
1061                \( -name include -o -name arch \) -prune -o \
1062                -name '*.[chS]' -print; \
1063           find $(srctree)/arch/$(ARCH) $(RCS_FIND_IGNORE) \
1064                -name '*.[chS]' -print; \
1065           find $(srctree)/security/selinux/include $(RCS_FIND_IGNORE) \
1066                -name '*.[chS]' -print; \
1067           find $(srctree)/include $(RCS_FIND_IGNORE) \
1068                \( -name config -o -name 'asm-*' \) -prune \
1069                -o -name '*.[chS]' -print; \
1070           find $(srctree)/include/asm-$(ARCH) $(RCS_FIND_IGNORE) \
1071                -name '*.[chS]' -print; \
1072           find $(srctree)/include/asm-generic $(RCS_FIND_IGNORE) \
1073                -name '*.[chS]' -print )
1074 endef
1075
1076 quiet_cmd_cscope-file = FILELST cscope.files
1077       cmd_cscope-file = $(all-sources) > cscope.files
1078
1079 quiet_cmd_cscope = MAKE    cscope.out
1080       cmd_cscope = cscope -k -b -q
1081
1082 cscope: FORCE
1083         $(call cmd,cscope-file)
1084         $(call cmd,cscope)
1085
1086 quiet_cmd_TAGS = MAKE   $@
1087 cmd_TAGS = $(all-sources) | etags -
1088
1089 #       Exuberant ctags works better with -I
1090
1091 quiet_cmd_tags = MAKE   $@
1092 define cmd_tags
1093         rm -f $@; \
1094         CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
1095         $(all-sources) | xargs ctags $$CTAGSF -a
1096 endef
1097
1098 TAGS: FORCE
1099         $(call cmd,TAGS)
1100
1101 tags: FORCE
1102         $(call cmd,tags)
1103
1104
1105 # Scripts to check various things for consistency
1106 # ---------------------------------------------------------------------------
1107
1108 configcheck:
1109         find * $(RCS_FIND_IGNORE) \
1110                 -name '*.[hcS]' -type f -print | sort \
1111                 | xargs $(PERL) -w scripts/checkconfig.pl
1112
1113 includecheck:
1114         find * $(RCS_FIND_IGNORE) \
1115                 -name '*.[hcS]' -type f -print | sort \
1116                 | xargs $(PERL) -w scripts/checkincludes.pl
1117
1118 versioncheck:
1119         find * $(RCS_FIND_IGNORE) \
1120                 -name '*.[hcS]' -type f -print | sort \
1121                 | xargs $(PERL) -w scripts/checkversion.pl
1122
1123 buildcheck:
1124         $(PERL) scripts/reference_discarded.pl
1125         $(PERL) scripts/reference_init.pl
1126
1127 endif #ifeq ($(config-targets),1)
1128 endif #ifeq ($(mixed-targets),1)
1129
1130 .PHONY: checkstack
1131 checkstack:
1132         $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
1133         $(PERL) $(src)/scripts/checkstack.pl $(ARCH)
1134
1135 # FIXME Should go into a make.lib or something 
1136 # ===========================================================================
1137
1138 quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
1139       cmd_rmdirs = rm -rf $(rm-dirs)
1140
1141 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
1142       cmd_rmfiles = rm -f $(rm-files)
1143
1144
1145 a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(AFLAGS_KERNEL) \
1146           $(NOSTDINC_FLAGS) $(CPPFLAGS) \
1147           $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o)
1148
1149 quiet_cmd_as_o_S = AS      $@
1150 cmd_as_o_S       = $(CC) $(a_flags) -c -o $@ $<
1151
1152 # read all saved command lines
1153
1154 targets := $(wildcard $(sort $(targets)))
1155 cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
1156
1157 ifneq ($(cmd_files),)
1158   $(cmd_files): ;       # Do not try to update included dependency files
1159   include $(cmd_files)
1160 endif
1161
1162 # execute the command and also postprocess generated .d dependencies
1163 # file
1164
1165 if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\
1166                           $(filter-out $(cmd_$(1)),$(cmd_$@))\
1167                           $(filter-out $(cmd_$@),$(cmd_$(1)))),\
1168         @set -e; \
1169         $(if $($(quiet)cmd_$(1)),echo '  $(subst ','\'',$($(quiet)cmd_$(1)))';) \
1170         $(cmd_$(1)); \
1171         scripts/basic/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \
1172         rm -f $(depfile); \
1173         mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd)
1174
1175 # Usage: $(call if_changed_rule,foo)
1176 # will check if $(cmd_foo) changed, or any of the prequisites changed,
1177 # and if so will execute $(rule_foo)
1178
1179 if_changed_rule = $(if $(strip $? \
1180                                $(filter-out $(cmd_$(1)),$(cmd_$(@F)))\
1181                                $(filter-out $(cmd_$(@F)),$(cmd_$(1)))),\
1182                        @$(rule_$(1)))
1183
1184 # If quiet is set, only print short version of command
1185
1186 cmd = @$(if $($(quiet)cmd_$(1)),echo '  $($(quiet)cmd_$(1))' &&) $(cmd_$(1))
1187
1188 # filechk is used to check if the content of a generated file is updated.
1189 # Sample usage:
1190 # define filechk_sample
1191 #       echo $KERNELRELEASE
1192 # endef
1193 # version.h : Makefile
1194 #       $(call filechk,sample)
1195 # The rule defined shall write to stdout the content of the new file.
1196 # The existing file will be compared with the new one.
1197 # - If no file exist it is created
1198 # - If the content differ the new file is used
1199 # - If they are equal no change, and no timestamp update
1200
1201 define filechk
1202         @set -e;                                \
1203         echo '  CHK     $@';                    \
1204         mkdir -p $(dir $@);                     \
1205         $(filechk_$(1)) < $< > $@.tmp;          \
1206         if [ -r $@ ] && cmp -s $@ $@.tmp; then  \
1207                 rm -f $@.tmp;                   \
1208         else                                    \
1209                 echo '  UPD     $@';            \
1210                 mv -f $@.tmp $@;                \
1211         fi
1212 endef
1213
1214 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=dir
1215 # Usage:
1216 # $(Q)$(MAKE) $(build)=dir
1217 build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
1218
1219 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1220 # Usage:
1221 # $(Q)$(MAKE) $(clean)=dir
1222 clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1223
1224 #       $(call descend,<dir>,<target>)
1225 #       Recursively call a sub-make in <dir> with target <target>
1226 # Usage is deprecated, because make does not see this as an invocation of make.
1227 descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2)
1228
1229 endif   # skip-makefile
1230
1231 FORCE: