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