7735ec0c1127836ddcba0bd90c6bc64dcac42e4b
[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_FLASH_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 #
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) symlinks
654 # CONFIG_MIPS_BRCM End Broadcom changed code.
655
656 # prepare 2 generate Makefile to be placed in output directory, if
657 # using a seperate output directory. This allows convinient use
658 # of make in output directory
659 prepare2:
660         $(Q)if [ ! $(srctree) -ef $(objtree) ]; then       \
661         $(CONFIG_SHELL) $(srctree)/scripts/mkmakefile      \
662             $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) \
663             > $(objtree)/Makefile;                         \
664         fi
665
666 # prepare1 is used to check if we are building in a separate output directory,
667 # and if so do:
668 # 1) Check that make has not been executed in the kernel src $(srctree)
669 # 2) Create the include2 directory, used for the second asm symlink
670
671 prepare1: prepare2
672 ifneq ($(KBUILD_SRC),)
673         @echo '  Using $(srctree) as source for kernel'
674         $(Q)if [ -h $(srctree)/include/asm -o -f $(srctree)/.config ]; then \
675                 echo "  $(srctree) is not clean, please run 'make mrproper'";\
676                 echo "  in the '$(srctree)' directory.";\
677                 /bin/false; \
678         fi;
679         $(Q)if [ ! -d include2 ]; then mkdir -p include2; fi;
680         $(Q)ln -fsn $(srctree)/include/asm-$(ARCH) include2/asm
681 endif
682
683 prepare0: prepare1 include/linux/version.h include/asm include/config/MARKER
684 ifneq ($(KBUILD_MODULES),)
685         $(Q)rm -rf $(MODVERDIR)
686         $(Q)mkdir -p $(MODVERDIR)
687 endif
688
689 # All the preparing..
690 prepare-all: prepare0 prepare
691
692 #       Leave this as default for preprocessing vmlinux.lds.S, which is now
693 #       done in arch/$(ARCH)/kernel/Makefile
694
695 export AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH)
696
697 # Single targets
698 # ---------------------------------------------------------------------------
699
700 %.s: %.c scripts FORCE
701         $(Q)$(MAKE) $(build)=$(@D) $@
702 %.i: %.c scripts FORCE
703         $(Q)$(MAKE) $(build)=$(@D) $@
704 %.o: %.c scripts FORCE
705         $(Q)$(MAKE) $(build)=$(@D) $@
706 %/:      scripts prepare FORCE
707         $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) $(build)=$(@D)
708 %.lst: %.c scripts FORCE
709         $(Q)$(MAKE) $(build)=$(@D) $@
710 %.s: %.S scripts FORCE
711         $(Q)$(MAKE) $(build)=$(@D) $@
712 %.o: %.S scripts FORCE
713         $(Q)$(MAKE) $(build)=$(@D) $@
714
715 #       FIXME: The asm symlink changes when $(ARCH) changes. That's
716 #       hard to detect, but I suppose "make mrproper" is a good idea
717 #       before switching between archs anyway.
718
719 include/asm:
720         @echo '  SYMLINK $@ -> include/asm-$(ARCH)'
721         $(Q)if [ ! -d include ]; then mkdir -p include; fi;
722         @ln -fsn asm-$(ARCH) $@
723
724 #       Split autoconf.h into include/linux/config/*
725
726 include/config/MARKER: include/linux/autoconf.h
727         @echo '  SPLIT   include/linux/autoconf.h -> include/config/*'
728         @scripts/basic/split-include include/linux/autoconf.h include/config
729         @touch $@
730
731 # Generate some files
732 # ---------------------------------------------------------------------------
733
734 #       version.h changes when $(KERNELRELEASE) etc change, as defined in
735 #       this Makefile
736
737 uts_len := 64
738
739 define filechk_version.h
740         if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \
741           echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
742           exit 1; \
743         fi; \
744         (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
745           echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
746          echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \
747         )
748 endef
749
750 include/linux/version.h: Makefile
751         $(call filechk,version.h)
752
753 # ---------------------------------------------------------------------------
754
755 .PHONY: depend dep
756 depend dep:
757         @echo '*** Warning: make $@ is unnecessary now.'
758
759 # ---------------------------------------------------------------------------
760 # Modules
761
762 ifdef CONFIG_MODULES
763
764 #       By default, build modules as well
765
766 all: modules
767
768 #       Build modules
769
770 .PHONY: modules
771 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
772 modules: preparebrcmdriver $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux)
773 # CONFIG_MIPS_BRCM End Broadcom changed code.
774         @echo '  Building modules, stage 2.';
775         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
776
777
778 # Target to prepare building external modules
779 .PHONY: modules_prepare
780 modules_prepare: prepare-all scripts
781
782 # Target to install modules
783 .PHONY: modules_install
784 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
785 #modules_install: _modinst_ _modinst_post
786 #We have no need for it "_modinst_post"
787 modules_install: _modinst_ 
788 # CONFIG_MIPS_BRCM End Broadcom changed code.
789
790 .PHONY: _modinst_
791 _modinst_:
792 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
793 #       @if [ -z "`$(DEPMOD) -V | grep module-init-tools`" ]; then \
794 #               echo "Warning: you may need to install module-init-tools"; \
795 #               echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\
796 #               sleep 1; \
797 #       fi
798 # CONFIG_MIPS_BRCM End Broadcom changed code.
799         @rm -rf $(MODLIB)/kernel
800         @rm -f $(MODLIB)/source
801         @mkdir -p $(MODLIB)/kernel
802 # CONFIG_MIPS_BRCM Begin Broadcom changed code  
803 #       @ln -s $(srctree) $(MODLIB)/source
804 #       @if [ ! $(objtree) -ef  $(MODLIB)/build ]; then \
805 #               rm -f $(MODLIB)/build ; \
806 #               ln -s $(objtree) $(MODLIB)/build ; \
807 #       fi
808 # CONFIG_MIPS_BRCM End Broadcom changed code.   
809         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
810
811 # If System.map exists, run depmod.  This deliberately does not have a
812 # dependency on System.map since that would run the dependency tree on
813 # vmlinux.  This depmod is only for convenience to give the initial
814 # boot a modules.dep even before / is mounted read-write.  However the
815 # boot script depmod is the master version.
816 ifeq "$(strip $(INSTALL_MOD_PATH))" ""
817 depmod_opts     :=
818 else
819 depmod_opts     := -b $(INSTALL_MOD_PATH) -r
820 endif
821 .PHONY: _modinst_post
822 _modinst_post: _modinst_
823         if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
824
825 else # CONFIG_MODULES
826
827 # Modules not configured
828 # ---------------------------------------------------------------------------
829
830 modules modules_install: FORCE
831         @echo
832         @echo "The present kernel configuration has modules disabled."
833         @echo "Type 'make config' and enable loadable module support."
834         @echo "Then build a kernel with module support enabled."
835         @echo
836         @exit 1
837
838 endif # CONFIG_MODULES
839
840 # Generate asm-offsets.h 
841 # ---------------------------------------------------------------------------
842
843 define filechk_gen-asm-offsets
844         (set -e; \
845          echo "#ifndef __ASM_OFFSETS_H__"; \
846          echo "#define __ASM_OFFSETS_H__"; \
847          echo "/*"; \
848          echo " * DO NOT MODIFY."; \
849          echo " *"; \
850          echo " * This file was generated by arch/$(ARCH)/Makefile"; \
851          echo " *"; \
852          echo " */"; \
853          echo ""; \
854          sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
855          echo ""; \
856          echo "#endif" )
857 endef
858
859
860 ###
861 # Cleaning is done on three levels.
862 # make clean     Delete most generated files
863 #                Leave enough to build external modules
864 # make mrproper  Delete the current configuration, and all generated files
865 # make distclean Remove editor backup files, patch leftover files and the like
866
867 # Directories & files removed with 'make clean'
868 CLEAN_DIRS  += $(MODVERDIR)
869 CLEAN_FILES +=  vmlinux System.map \
870                 .tmp_kallsyms* .tmp_version .tmp_vmlinux* .tmp_System.map
871
872 # Directories & files removed with 'make mrproper'
873 MRPROPER_DIRS  += include/config include2
874 MRPROPER_FILES += .config .config.old include/asm .version \
875                   include/linux/autoconf.h include/linux/version.h \
876                   Module.symvers tags TAGS cscope*
877
878 # clean - Delete most, but leave enough to build external modules
879 #
880 clean: rm-dirs  := $(CLEAN_DIRS)
881 clean: rm-files := $(CLEAN_FILES)
882 clean-dirs      := $(addprefix _clean_,$(vmlinux-alldirs))
883
884 .PHONY: $(clean-dirs) clean archclean
885 $(clean-dirs):
886         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
887
888 clean: archclean $(clean-dirs)
889         $(call cmd,rmdirs)
890         $(call cmd,rmfiles)
891 # CONFIG_MIPS_BRCM Begin Broadcom changed code.
892         @find . $(BRCMDRIVERS) $(RCS_FIND_IGNORE) \
893                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
894                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
895                 -type f -print | xargs rm -f
896 # CONFIG_MIPS_BRCM End Broadcom changed code.
897
898 # mrproper - Delete all generated files, including .config
899 #
900 mrproper: rm-dirs  := $(wildcard $(MRPROPER_DIRS))
901 mrproper: rm-files := $(wildcard $(MRPROPER_FILES))
902 mrproper-dirs      := $(addprefix _mrproper_,Documentation/DocBook scripts)
903
904 .PHONY: $(mrproper-dirs) mrproper archmrproper
905 $(mrproper-dirs):
906         $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@)
907
908 mrproper: clean archmrproper $(mrproper-dirs)
909         $(call cmd,rmdirs)
910         $(call cmd,rmfiles)
911
912 # distclean
913 #
914 .PHONY: distclean
915
916 distclean: mrproper
917         @find $(srctree) $(RCS_FIND_IGNORE) \
918                 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
919                 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
920                 -o -name '.*.rej' -o -size 0 \
921                 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
922                 -type f -print | xargs rm -f
923
924
925 # Packaging of the kernel to various formats
926 # ---------------------------------------------------------------------------
927 # rpm target kept for backward compatibility
928 package-dir     := $(srctree)/scripts/package
929
930 .PHONY: %-pkg rpm
931
932 %pkg: FORCE
933         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
934 rpm: FORCE
935         $(Q)$(MAKE) -f $(package-dir)/Makefile $@
936
937
938 # Brief documentation of the typical targets used
939 # ---------------------------------------------------------------------------
940
941 boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig)
942 boards := $(notdir $(boards))
943
944 help:
945         @echo  'Cleaning targets:'
946         @echo  '  clean           - remove most generated files but keep the config'
947         @echo  '  mrproper        - remove all generated files + config + various backup files'
948         @echo  ''
949         @echo  'Configuration targets:'
950         @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
951         @echo  ''
952         @echo  'Other generic targets:'
953         @echo  '  all             - Build all targets marked with [*]'
954         @echo  '* vmlinux         - Build the bare kernel'
955         @echo  '* modules         - Build all modules'
956         @echo  '  modules_install - Install all modules'
957         @echo  '  dir/            - Build all files in dir and below'
958         @echo  '  dir/file.[ois]  - Build specified target only'
959         @echo  '  rpm             - Build a kernel as an RPM package'
960         @echo  '  tags/TAGS       - Generate tags file for editors'
961         @echo  '  cscope          - Generate cscope index'
962         @echo  '  checkstack      - Generate a list of stack hogs'
963         @echo  'Kernel packaging:'
964         @$(MAKE) -f $(package-dir)/Makefile help
965         @echo  ''
966         @echo  'Documentation targets:'
967         @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
968         @echo  ''
969         @echo  'Architecture specific targets ($(ARCH)):'
970         @$(if $(archhelp),$(archhelp),\
971                 echo '  No architecture specific help defined for $(ARCH)')
972         @echo  ''
973         @$(if $(boards), \
974                 $(foreach b, $(boards), \
975                 printf "  %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
976                 echo '')
977
978         @echo  '  make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
979         @echo  '  make O=dir [targets] Locate all output files in "dir", including .config'
980         @echo  '  make C=1   [targets] Check all c source with checker tool'
981         @echo  ''
982         @echo  'Execute "make" or "make all" to build all targets marked with [*] '
983         @echo  'For further info see the ./README file'
984
985
986 # Documentation targets
987 # ---------------------------------------------------------------------------
988 %docs: scripts_basic FORCE
989         $(Q)$(MAKE) $(build)=Documentation/DocBook $@
990
991 else # KBUILD_EXTMOD
992
993 ###
994 # External module support.
995 # When building external modules the kernel used as basis is considered
996 # read-only, and no consistency checks are made and the make
997 # system is not used on the basis kernel. If updates are required
998 # in the basis kernel ordinary make commands (without M=...) must
999 # be used.
1000 #
1001 # The following are the only valid targets when building external
1002 # modules.
1003 # make M=dir clean     Delete all automatically generated files
1004 # make M=dir modules   Make all modules in specified dir
1005 # make M=dir           Same as 'make M=dir modules'
1006 # make M=dir modules_install
1007 #                      Install the modules build in the module directory
1008 #                      Assumes install directory is already created
1009
1010 # We are always building modules
1011 KBUILD_MODULES := 1
1012 .PHONY: crmodverdir
1013 crmodverdir:
1014         $(Q)mkdir -p $(MODVERDIR)
1015
1016 module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD))
1017 .PHONY: $(module-dirs) modules
1018 $(module-dirs): crmodverdir
1019         $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@)
1020
1021 modules: $(module-dirs)
1022         @echo '  Building modules, stage 2.';
1023         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
1024
1025 .PHONY: modules_install
1026 modules_install:
1027         $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
1028
1029 clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD))
1030
1031 .PHONY: $(clean-dirs) clean
1032 $(clean-dirs):
1033         $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
1034
1035 clean:  rm-dirs := $(MODVERDIR)
1036 clean: $(clean-dirs)
1037         $(call cmd,rmdirs)
1038         @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \
1039                 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
1040                 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
1041                 -type f -print | xargs rm -f
1042
1043 help:
1044         @echo  '  Building external modules.'
1045         @echo  '  Syntax: make -C path/to/kernel/src M=$$PWD target'
1046         @echo  ''
1047         @echo  '  modules         - default target, build the module(s)'
1048         @echo  '  modules_install - install the module'
1049         @echo  '  clean           - remove generated files in module directory only'
1050         @echo  ''
1051 endif # KBUILD_EXTMOD
1052
1053 # Generate tags for editors
1054 # ---------------------------------------------------------------------------
1055
1056 define all-sources
1057         ( find $(srctree) $(RCS_FIND_IGNORE) \
1058                \( -name include -o -name arch \) -prune -o \
1059                -name '*.[chS]' -print; \
1060           find $(srctree)/arch/$(ARCH) $(RCS_FIND_IGNORE) \
1061                -name '*.[chS]' -print; \
1062           find $(srctree)/security/selinux/include $(RCS_FIND_IGNORE) \
1063                -name '*.[chS]' -print; \
1064           find $(srctree)/include $(RCS_FIND_IGNORE) \
1065                \( -name config -o -name 'asm-*' \) -prune \
1066                -o -name '*.[chS]' -print; \
1067           find $(srctree)/include/asm-$(ARCH) $(RCS_FIND_IGNORE) \
1068                -name '*.[chS]' -print; \
1069           find $(srctree)/include/asm-generic $(RCS_FIND_IGNORE) \
1070                -name '*.[chS]' -print )
1071 endef
1072
1073 quiet_cmd_cscope-file = FILELST cscope.files
1074       cmd_cscope-file = $(all-sources) > cscope.files
1075
1076 quiet_cmd_cscope = MAKE    cscope.out
1077       cmd_cscope = cscope -k -b -q
1078
1079 cscope: FORCE
1080         $(call cmd,cscope-file)
1081         $(call cmd,cscope)
1082
1083 quiet_cmd_TAGS = MAKE   $@
1084 cmd_TAGS = $(all-sources) | etags -
1085
1086 #       Exuberant ctags works better with -I
1087
1088 quiet_cmd_tags = MAKE   $@
1089 define cmd_tags
1090         rm -f $@; \
1091         CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
1092         $(all-sources) | xargs ctags $$CTAGSF -a
1093 endef
1094
1095 TAGS: FORCE
1096         $(call cmd,TAGS)
1097
1098 tags: FORCE
1099         $(call cmd,tags)
1100
1101
1102 # Scripts to check various things for consistency
1103 # ---------------------------------------------------------------------------
1104
1105 configcheck:
1106         find * $(RCS_FIND_IGNORE) \
1107                 -name '*.[hcS]' -type f -print | sort \
1108                 | xargs $(PERL) -w scripts/checkconfig.pl
1109
1110 includecheck:
1111         find * $(RCS_FIND_IGNORE) \
1112                 -name '*.[hcS]' -type f -print | sort \
1113                 | xargs $(PERL) -w scripts/checkincludes.pl
1114
1115 versioncheck:
1116         find * $(RCS_FIND_IGNORE) \
1117                 -name '*.[hcS]' -type f -print | sort \
1118                 | xargs $(PERL) -w scripts/checkversion.pl
1119
1120 buildcheck:
1121         $(PERL) scripts/reference_discarded.pl
1122         $(PERL) scripts/reference_init.pl
1123
1124 endif #ifeq ($(config-targets),1)
1125 endif #ifeq ($(mixed-targets),1)
1126
1127 .PHONY: checkstack
1128 checkstack:
1129         $(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
1130         $(PERL) $(src)/scripts/checkstack.pl $(ARCH)
1131
1132 # FIXME Should go into a make.lib or something 
1133 # ===========================================================================
1134
1135 quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN   $(wildcard $(rm-dirs)))
1136       cmd_rmdirs = rm -rf $(rm-dirs)
1137
1138 quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files)))
1139       cmd_rmfiles = rm -f $(rm-files)
1140
1141
1142 a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(AFLAGS_KERNEL) \
1143           $(NOSTDINC_FLAGS) $(CPPFLAGS) \
1144           $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o)
1145
1146 quiet_cmd_as_o_S = AS      $@
1147 cmd_as_o_S       = $(CC) $(a_flags) -c -o $@ $<
1148
1149 # read all saved command lines
1150
1151 targets := $(wildcard $(sort $(targets)))
1152 cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
1153
1154 ifneq ($(cmd_files),)
1155   $(cmd_files): ;       # Do not try to update included dependency files
1156   include $(cmd_files)
1157 endif
1158
1159 # execute the command and also postprocess generated .d dependencies
1160 # file
1161
1162 if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\
1163                           $(filter-out $(cmd_$(1)),$(cmd_$@))\
1164                           $(filter-out $(cmd_$@),$(cmd_$(1)))),\
1165         @set -e; \
1166         $(if $($(quiet)cmd_$(1)),echo '  $(subst ','\'',$($(quiet)cmd_$(1)))';) \
1167         $(cmd_$(1)); \
1168         scripts/basic/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \
1169         rm -f $(depfile); \
1170         mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd)
1171
1172 # Usage: $(call if_changed_rule,foo)
1173 # will check if $(cmd_foo) changed, or any of the prequisites changed,
1174 # and if so will execute $(rule_foo)
1175
1176 if_changed_rule = $(if $(strip $? \
1177                                $(filter-out $(cmd_$(1)),$(cmd_$(@F)))\
1178                                $(filter-out $(cmd_$(@F)),$(cmd_$(1)))),\
1179                        @$(rule_$(1)))
1180
1181 # If quiet is set, only print short version of command
1182
1183 cmd = @$(if $($(quiet)cmd_$(1)),echo '  $($(quiet)cmd_$(1))' &&) $(cmd_$(1))
1184
1185 # filechk is used to check if the content of a generated file is updated.
1186 # Sample usage:
1187 # define filechk_sample
1188 #       echo $KERNELRELEASE
1189 # endef
1190 # version.h : Makefile
1191 #       $(call filechk,sample)
1192 # The rule defined shall write to stdout the content of the new file.
1193 # The existing file will be compared with the new one.
1194 # - If no file exist it is created
1195 # - If the content differ the new file is used
1196 # - If they are equal no change, and no timestamp update
1197
1198 define filechk
1199         @set -e;                                \
1200         echo '  CHK     $@';                    \
1201         mkdir -p $(dir $@);                     \
1202         $(filechk_$(1)) < $< > $@.tmp;          \
1203         if [ -r $@ ] && cmp -s $@ $@.tmp; then  \
1204                 rm -f $@.tmp;                   \
1205         else                                    \
1206                 echo '  UPD     $@';            \
1207                 mv -f $@.tmp $@;                \
1208         fi
1209 endef
1210
1211 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=dir
1212 # Usage:
1213 # $(Q)$(MAKE) $(build)=dir
1214 build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
1215
1216 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1217 # Usage:
1218 # $(Q)$(MAKE) $(clean)=dir
1219 clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1220
1221 #       $(call descend,<dir>,<target>)
1222 #       Recursively call a sub-make in <dir> with target <target>
1223 # Usage is deprecated, because make does not see this as an invocation of make.
1224 descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2)
1225
1226 endif   # skip-makefile
1227
1228 FORCE: