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