[PATCH] hlist constification
[linux-2.6/history.git] / Makefile
blobf83008b6390c11aba271b341e136c0cd4a73a3bd
1 VERSION = 2
2 PATCHLEVEL = 6
3 SUBLEVEL = 0
4 EXTRAVERSION = -test6
6 # *DOCUMENTATION*
7 # To see a list of typical targets execute "make help"
8 # More info can be located in ./README
9 # Comments in this file are targeted only to the developer, do not
10 # expect to learn how to build the kernel reading this file.
12 # Do not print "Entering directory ..."
13 MAKEFLAGS += --no-print-directory
15 # We are using a recursive build, so we need to do a little thinking
16 # to get the ordering right.
18 # Most importantly: sub-Makefiles should only ever modify files in
19 # their own directory. If in some directory we have a dependency on
20 # a file in another dir (which doesn't happen often, but it's of
21 # unavoidable when linking the built-in.o targets which finally
22 # turn into vmlinux), we will call a sub make in that other dir, and
23 # after that we are sure that everything which is in that other dir
24 # is now up to date.
26 # The only cases where we need to modify files which have global
27 # effects are thus separated out and done before the recursive
28 # descending is started. They are now explicitly listed as the
29 # prepare rule.
31 # To put more focus on warnings, be less verbose as default
32 # Use 'make V=1' to see the full commands
34 ifdef V
35 ifeq ("$(origin V)", "command line")
36 KBUILD_VERBOSE = $(V)
37 endif
38 endif
39 ifndef KBUILD_VERBOSE
40 KBUILD_VERBOSE = 0
41 endif
43 # Call sparse as part of compilation of C files
44 # Use 'make C=1' to enable sparse checking
46 ifdef C
47 ifeq ("$(origin C)", "command line")
48 KBUILD_CHECKSRC = $(C)
49 endif
50 endif
51 ifndef KBUILD_CHECKSRC
52 KBUILD_CHECKSRC = 0
53 endif
55 # kbuild supports saving output files in a separate directory.
56 # To locate output files in a separate directory two syntax'es are supported.
57 # In both cases the working directory must be the root of the kernel src.
58 # 1) O=
59 # Use "make O=dir/to/store/output/files/"
61 # 2) Set KBUILD_OUTPUT
62 # Set the environment variable KBUILD_OUTPUT to point to the directory
63 # where the output files shall be placed.
64 # export KBUILD_OUTPUT=dir/to/store/output/files/
65 # make
67 # The O= assigment takes precedence over the KBUILD_OUTPUT environment variable.
70 # KBUILD_SRC is set on invocation of make in OBJ directory
71 # KBUILD_SRC is not intended to be used by the regular user (for now)
72 ifeq ($(KBUILD_SRC),)
74 # OK, Make called in directory where kernel src resides
75 # Do we want to locate output files in a separate directory?
76 ifdef O
77 ifeq ("$(origin O)", "command line")
78 KBUILD_OUTPUT := $(O)
79 endif
80 endif
82 # That's our default target when none is given on the command line
83 .PHONY: all
84 all:
86 ifneq ($(KBUILD_OUTPUT),)
87 # Invoke a second make in the output directory, passing relevant variables
88 # check that the output directory actually exists
89 saved-output := $(KBUILD_OUTPUT)
90 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
91 $(if $(wildcard $(KBUILD_OUTPUT)),, \
92 $(error output directory "$(saved-output)" does not exist))
94 .PHONY: $(MAKECMDGOALS)
96 $(filter-out all,$(MAKECMDGOALS)) all:
97 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
98 KBUILD_SRC=$(CURDIR) KBUILD_VERBOSE=$(KBUILD_VERBOSE) \
99 KBUILD_CHECK=$(KBUILD_CHECK) -f $(CURDIR)/Makefile $@
101 # Leave processing to above invocation of make
102 skip-makefile := 1
103 endif # ifneq ($(KBUILD_OUTPUT),)
104 endif # ifeq ($(KBUILD_SRC),)
106 # We process the rest of the Makefile if this is the final invocation of make
107 ifeq ($(skip-makefile),)
109 srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR))
110 TOPDIR := $(srctree)
111 # FIXME - TOPDIR is obsolete, use srctree/objtree
112 objtree := $(CURDIR)
113 src := $(srctree)
114 obj := $(objtree)
116 VPATH := $(srctree)
118 export srctree objtree VPATH TOPDIR
120 KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
122 # SUBARCH tells the usermode build what the underlying arch is. That is set
123 # first, and if a usermode build is happening, the "ARCH=um" on the command
124 # line overrides the setting of ARCH below. If a native build is happening,
125 # then ARCH is assigned, getting whatever value it gets normally, and
126 # SUBARCH is subsequently ignored.
128 SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
129 -e s/arm.*/arm/ -e s/sa110/arm/ \
130 -e s/s390x/s390/ -e s/parisc64/parisc/ )
132 # Cross compiling and selecting different set of gcc/bin-utils
133 # ---------------------------------------------------------------------------
135 # When performing cross compilation for other architectures ARCH shall be set
136 # to the target architecture. (See arch/* for the possibilities).
137 # ARCH can be set during invocation of make:
138 # make ARCH=ia64
139 # Another way is to have ARCH set in the environment.
140 # The default ARCH is the host where make is executed.
142 # CROSS_COMPILE specify the prefix used for all executables used
143 # during compilation. Only gcc and related bin-utils executables
144 # are prefixed with $(CROSS_COMPILE).
145 # CROSS_COMPILE can be set on the command line
146 # make CROSS_COMPILE=ia64-linux-
147 # Alternatively CROSS_COMPILE can be set in the environment.
148 # Default value for CROSS_COMPILE is not to prefix executables
149 # Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile
151 ARCH ?= $(SUBARCH)
152 CROSS_COMPILE ?=
154 # Architecture as present in compile.h
155 UTS_MACHINE := $(ARCH)
157 # SHELL used by kbuild
158 CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
159 else if [ -x /bin/bash ]; then echo /bin/bash; \
160 else echo sh; fi ; fi)
162 HOSTCC = gcc
163 HOSTCXX = g++
164 HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
165 HOSTCXXFLAGS = -O2
167 # Decide whether to build built-in, modular, or both.
168 # Normally, just do built-in.
170 KBUILD_MODULES :=
171 KBUILD_BUILTIN := 1
173 # If we have only "make modules", don't compile built-in objects.
174 # When we're building modules with modversions, we need to consider
175 # the built-in objects during the descend as well, in order to
176 # make sure the checksums are uptodate before we record them.
178 ifeq ($(MAKECMDGOALS),modules)
179 KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1)
180 endif
182 # If we have "make <whatever> modules", compile modules
183 # in addition to whatever we do anyway.
184 # Just "make" or "make all" shall build modules as well
186 ifneq ($(filter all modules,$(MAKECMDGOALS)),)
187 KBUILD_MODULES := 1
188 endif
190 ifeq ($(MAKECMDGOALS),)
191 KBUILD_MODULES := 1
192 endif
194 export KBUILD_MODULES KBUILD_BUILTIN KBUILD_VERBOSE
195 export KBUILD_CHECKSRC KBUILD_SRC
197 # Beautify output
198 # ---------------------------------------------------------------------------
200 # Normally, we echo the whole command before executing it. By making
201 # that echo $($(quiet)$(cmd)), we now have the possibility to set
202 # $(quiet) to choose other forms of output instead, e.g.
204 # quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@
205 # cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $<
207 # If $(quiet) is empty, the whole command will be printed.
208 # If it is set to "quiet_", only the short version will be printed.
209 # If it is set to "silent_", nothing wil be printed at all, since
210 # the variable $(silent_cmd_cc_o_c) doesn't exist.
212 # A simple variant is to prefix commands with $(Q) - that's usefull
213 # for commands that shall be hidden in non-verbose mode.
215 # $(Q)ln $@ :<
217 # If KBUILD_VERBOSE equals 0 then the above command will be hidden.
218 # If KBUILD_VERBOSE equals 1 then the above command is displayed.
220 ifeq ($(KBUILD_VERBOSE),1)
221 quiet =
223 else
224 quiet=quiet_
225 Q = @
226 endif
228 # If the user is running make -s (silent mode), suppress echoing of
229 # commands
231 ifneq ($(findstring s,$(MAKEFLAGS)),)
232 quiet=silent_
233 endif
235 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 ;)
237 export quiet Q KBUILD_VERBOSE check_gcc
239 # Look for make include files relative to root of kernel src
240 MAKEFLAGS += --include-dir=$(srctree)
242 # For maximum performance (+ possibly random breakage, uncomment
243 # the following)
245 #MAKEFLAGS += -rR
247 # Make variables (CC, etc...)
249 AS = $(CROSS_COMPILE)as
250 LD = $(CROSS_COMPILE)ld
251 CC = $(CROSS_COMPILE)gcc
252 CPP = $(CC) -E
253 AR = $(CROSS_COMPILE)ar
254 NM = $(CROSS_COMPILE)nm
255 STRIP = $(CROSS_COMPILE)strip
256 OBJCOPY = $(CROSS_COMPILE)objcopy
257 OBJDUMP = $(CROSS_COMPILE)objdump
258 AWK = awk
259 RPM := $(shell if [ -x "/usr/bin/rpmbuild" ]; then echo rpmbuild; \
260 else echo rpm; fi)
261 GENKSYMS = scripts/genksyms/genksyms
262 DEPMOD = /sbin/depmod
263 KALLSYMS = scripts/kallsyms
264 PERL = perl
265 CHECK = sparse
266 MODFLAGS = -DMODULE
267 CFLAGS_MODULE = $(MODFLAGS)
268 AFLAGS_MODULE = $(MODFLAGS)
269 LDFLAGS_MODULE = -r
270 CFLAGS_KERNEL =
271 AFLAGS_KERNEL =
273 NOSTDINC_FLAGS = -nostdinc -iwithprefix include
275 CPPFLAGS := -D__KERNEL__ -Iinclude \
276 $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include)
278 CFLAGS := -Wall -Wstrict-prototypes -Wno-trigraphs -O2 \
279 -fno-strict-aliasing -fno-common
280 AFLAGS := -D__ASSEMBLY__
282 export VERSION PATCHLEVEL SUBLEVEL EXTRAVERSION KERNELRELEASE ARCH \
283 CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC \
284 CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE \
285 HOSTCXX HOSTCXXFLAGS LDFLAGS_BLOB LDFLAGS_MODULE CHECK
287 export CPPFLAGS NOSTDINC_FLAGS OBJCOPYFLAGS LDFLAGS
288 export CFLAGS CFLAGS_KERNEL CFLAGS_MODULE
289 export AFLAGS AFLAGS_KERNEL AFLAGS_MODULE
291 export MODVERDIR := .tmp_versions
293 # The temporary file to save gcc -MD generated dependencies must not
294 # contain a comma
295 comma := ,
296 depfile = $(subst $(comma),_,$(@D)/.$(@F).d)
298 # Files to ignore in find ... statements
300 RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS \) -prune -o
301 RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS
303 # ===========================================================================
304 # Rules shared between *config targets and build targets
306 # Helpers built in scripts/
308 scripts/docproc scripts/split-include : scripts ;
310 .PHONY: scripts scripts/fixdep
311 scripts:
312 $(Q)$(MAKE) $(build)=scripts
314 scripts/fixdep:
315 $(Q)$(MAKE) $(build)=scripts $@
318 # To make sure we do not include .config for any of the *config targets
319 # catch them early, and hand them over to scripts/kconfig/Makefile
320 # It is allowed to specify more targets when calling make, including
321 # mixing *config targets and build targets.
322 # For example 'make oldconfig all'.
323 # Detect when mixed targets is specified, and make a second invocation
324 # of make so .config is not included in this case either (for *config).
326 no-dot-config-targets := clean mrproper distclean \
327 cscope TAGS tags help %docs check%
329 config-targets := 0
330 mixed-targets := 0
331 dot-config := 1
333 ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),)
334 ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),)
335 dot-config := 0
336 endif
337 endif
339 ifneq ($(filter config %config,$(MAKECMDGOALS)),)
340 config-targets := 1
341 ifneq ($(filter-out config %config,$(MAKECMDGOALS)),)
342 mixed-targets := 1
343 endif
344 endif
346 ifeq ($(mixed-targets),1)
347 # ===========================================================================
348 # We're called with mixed targets (*config and build targets).
349 # Handle them one by one.
351 %:: FORCE
352 $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@
354 else
355 ifeq ($(config-targets),1)
356 # ===========================================================================
357 # *config targets only - make sure prerequisites are updated, and descend
358 # in scripts/kconfig to make the *config target
360 %config: scripts/fixdep FORCE
361 $(Q)$(MAKE) $(build)=scripts/kconfig $@
362 config : scripts/fixdep FORCE
363 $(Q)$(MAKE) $(build)=scripts/kconfig $@
365 else
366 # ===========================================================================
367 # Build targets only - this includes vmlinux, arch specific targets, clean
368 # targets and others. In general all targets except *config targets.
370 # That's our default target when none is given on the command line
371 # Note that 'modules' will be added as a prerequisite as well,
372 # in the CONFIG_MODULES part below
374 all: vmlinux
376 # Objects we will link into vmlinux / subdirs we need to visit
377 init-y := init/
378 drivers-y := drivers/ sound/
379 net-y := net/
380 libs-y := lib/
381 core-y := usr/
382 SUBDIRS :=
384 ifeq ($(dot-config),1)
385 # In this section, we need .config
387 # Read in dependencies to all Kconfig* files, make sure to run
388 # oldconfig if changes are detected.
389 -include .config.cmd
391 include .config
393 # If .config needs to be updated, it will be done via the dependency
394 # that autoconf has on .config.
395 # To avoid any implicit rule to kick in, define an empty command
396 .config: ;
398 # If .config is newer than include/linux/autoconf.h, someone tinkered
399 # with it and forgot to run make oldconfig
400 include/linux/autoconf.h: .config
401 $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig
403 endif
405 include $(srctree)/arch/$(ARCH)/Makefile
407 # Let architecture Makefiles change CPPFLAGS if needed
408 CFLAGS := $(CPPFLAGS) $(CFLAGS)
409 AFLAGS := $(CPPFLAGS) $(AFLAGS)
411 core-y += kernel/ mm/ fs/ ipc/ security/ crypto/
413 SUBDIRS += $(patsubst %/,%,$(filter %/, $(init-y) $(init-m) \
414 $(core-y) $(core-m) $(drivers-y) $(drivers-m) \
415 $(net-y) $(net-m) $(libs-y) $(libs-m)))
417 ALL_SUBDIRS := $(sort $(SUBDIRS) $(patsubst %/,%,$(filter %/, \
418 $(init-n) $(init-) \
419 $(core-n) $(core-) $(drivers-n) $(drivers-) \
420 $(net-n) $(net-) $(libs-n) $(libs-))))
422 init-y := $(patsubst %/, %/built-in.o, $(init-y))
423 core-y := $(patsubst %/, %/built-in.o, $(core-y))
424 drivers-y := $(patsubst %/, %/built-in.o, $(drivers-y))
425 net-y := $(patsubst %/, %/built-in.o, $(net-y))
426 libs-y1 := $(patsubst %/, %/lib.a, $(libs-y))
427 libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y))
428 libs-y := $(libs-y1) $(libs-y2)
430 # Here goes the main Makefile
431 # ---------------------------------------------------------------------------
434 ifndef CONFIG_FRAME_POINTER
435 CFLAGS += -fomit-frame-pointer
436 endif
438 ifdef CONFIG_DEBUG_INFO
439 CFLAGS += -g
440 endif
442 # warn about C99 declaration after statement
443 CFLAGS += $(call check_gcc,-Wdeclaration-after-statement,)
446 # INSTALL_PATH specifies where to place the updated kernel and system map
447 # images. Uncomment if you want to place them anywhere other than root.
450 #export INSTALL_PATH=/boot
453 # INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory
454 # relocations required by build roots. This is not defined in the
455 # makefile but the arguement can be passed to make if needed.
458 MODLIB := $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE)
459 export MODLIB
461 # Build vmlinux
462 # ---------------------------------------------------------------------------
464 # This is a bit tricky: If we need to relink vmlinux, we want
465 # the version number incremented, which means recompile init/version.o
466 # and relink init/init.o. However, we cannot do this during the
467 # normal descending-into-subdirs phase, since at that time
468 # we cannot yet know if we will need to relink vmlinux.
469 # So we descend into init/ inside the rule for vmlinux again.
470 head-y += $(HEAD)
471 vmlinux-objs := $(head-y) $(init-y) $(core-y) $(libs-y) $(drivers-y) $(net-y)
473 quiet_cmd_vmlinux__ = LD $@
474 define cmd_vmlinux__
475 $(LD) $(LDFLAGS) $(LDFLAGS_vmlinux) $(head-y) $(init-y) \
476 --start-group \
477 $(core-y) \
478 $(libs-y) \
479 $(drivers-y) \
480 $(net-y) \
481 --end-group \
482 $(filter .tmp_kallsyms%,$^) \
483 -o $@
484 endef
486 # set -e makes the rule exit immediately on error
488 define rule_vmlinux__
489 +set -e; \
490 $(if $(filter .tmp_kallsyms%,$^),, \
491 echo ' GEN .version'; \
492 . $(srctree)/scripts/mkversion > .tmp_version; \
493 mv -f .tmp_version .version; \
494 $(MAKE) $(build)=init; \
496 $(if $($(quiet)cmd_vmlinux__), \
497 echo ' $($(quiet)cmd_vmlinux__)' &&) \
498 $(cmd_vmlinux__); \
499 echo 'cmd_$@ := $(cmd_vmlinux__)' > $(@D)/.$(@F).cmd
500 endef
502 define rule_vmlinux
503 $(rule_vmlinux__); \
504 $(NM) $@ | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map
505 endef
507 LDFLAGS_vmlinux += -T arch/$(ARCH)/kernel/vmlinux.lds.s
509 # Generate section listing all symbols and add it into vmlinux
510 # It's a three stage process:
511 # o .tmp_vmlinux1 has all symbols and sections, but __kallsyms is
512 # empty
513 # Running kallsyms on that gives us .tmp_kallsyms1.o with
514 # the right size
515 # o .tmp_vmlinux2 now has a __kallsyms section of the right size,
516 # but due to the added section, some addresses have shifted
517 # From here, we generate a correct .tmp_kallsyms2.o
518 # o The correct .tmp_kallsyms2.o is linked into the final vmlinux.
520 ifdef CONFIG_KALLSYMS
522 kallsyms.o := .tmp_kallsyms2.o
524 quiet_cmd_kallsyms = KSYM $@
525 cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) > $@
527 .tmp_kallsyms1.o .tmp_kallsyms2.o: %.o: %.S scripts FORCE
528 $(call if_changed_dep,as_o_S)
530 .tmp_kallsyms%.S: .tmp_vmlinux%
531 $(call cmd,kallsyms)
533 .tmp_vmlinux1: $(vmlinux-objs) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
534 +$(call if_changed_rule,vmlinux__)
536 .tmp_vmlinux2: $(vmlinux-objs) .tmp_kallsyms1.o arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
537 $(call if_changed_rule,vmlinux__)
539 endif
541 # Finally the vmlinux rule
543 vmlinux: $(vmlinux-objs) $(kallsyms.o) arch/$(ARCH)/kernel/vmlinux.lds.s FORCE
544 $(call if_changed_rule,vmlinux)
546 # The actual objects are generated when descending,
547 # make sure no implicit rule kicks in
549 $(sort $(vmlinux-objs)) arch/$(ARCH)/kernel/vmlinux.lds.s: $(SUBDIRS) ;
551 # Handle descending into subdirectories listed in $(SUBDIRS)
553 .PHONY: $(SUBDIRS)
554 $(SUBDIRS): prepare-all
555 $(Q)$(MAKE) $(build)=$@
557 # Things we need to do before we recursively start building the kernel
558 # or the modules are listed in "prepare-all".
559 # A multi level approach is used. prepare1 is updated first, then prepare0.
560 # prepare-all is the collection point for the prepare targets.
562 .PHONY: prepare-all prepare prepare0 prepare1
564 # prepare1 is used to check if we are building in a separate output directory,
565 # and if so do:
566 # 1) Check that make has not been executed in the kernel src $(srctree)
567 # 2) Create the include2 directory, used for the second asm symlink
569 prepare1:
570 ifneq ($(KBUILD_SRC),)
571 @echo ' Using $(srctree) as source for kernel'
572 $(Q)if [ -h $(srctree)/include/asm -o -f $(srctree)/.config ]; then \
573 echo " $(srctree) is not clean, please run 'make mrproper'";\
574 echo " in the '$(srctree)' directory.";\
575 /bin/false; \
577 $(Q)if [ ! -d include2 ]; then mkdir -p include2; fi;
578 $(Q)ln -fsn $(srctree)/include/asm-$(ARCH) include2/asm
579 endif
581 prepare0: prepare1 include/linux/version.h include/asm include/config/MARKER
582 ifdef KBUILD_MODULES
583 ifeq ($(origin SUBDIRS),file)
584 $(Q)rm -rf $(MODVERDIR)
585 else
586 @echo '*** Warning: Overriding SUBDIRS on the command line can cause'
587 @echo '*** inconsistencies'
588 endif
589 endif
590 $(if $(CONFIG_MODULES),$(Q)mkdir -p $(MODVERDIR))
592 # All the preparing..
593 prepare-all: prepare0 prepare
595 # Leave this as default for preprocessing vmlinux.lds.S, which is now
596 # done in arch/$(ARCH)/kernel/Makefile
598 export AFLAGS_vmlinux.lds.o += -P -C -U$(ARCH)
600 # Single targets
601 # ---------------------------------------------------------------------------
603 %.s: %.c scripts FORCE
604 $(Q)$(MAKE) $(build)=$(@D) $@
605 %.i: %.c scripts FORCE
606 $(Q)$(MAKE) $(build)=$(@D) $@
607 %.o: %.c scripts FORCE
608 $(Q)$(MAKE) $(build)=$(@D) $@
609 %/: scripts prepare FORCE
610 $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) $(build)=$(@D)
611 %.lst: %.c scripts FORCE
612 $(Q)$(MAKE) $(build)=$(@D) $@
613 %.s: %.S scripts FORCE
614 $(Q)$(MAKE) $(build)=$(@D) $@
615 %.o: %.S scripts FORCE
616 $(Q)$(MAKE) $(build)=$(@D) $@
618 # FIXME: The asm symlink changes when $(ARCH) changes. That's
619 # hard to detect, but I suppose "make mrproper" is a good idea
620 # before switching between archs anyway.
622 include/asm:
623 @echo ' SYMLINK $@ -> include/asm-$(ARCH)'
624 $(Q)if [ ! -d include ]; then mkdir -p include; fi;
625 @ln -fsn asm-$(ARCH) $@
627 # Split autoconf.h into include/linux/config/*
629 include/config/MARKER: scripts/split-include include/linux/autoconf.h
630 @echo ' SPLIT include/linux/autoconf.h -> include/config/*'
631 @scripts/split-include include/linux/autoconf.h include/config
632 @touch $@
634 # Generate some files
635 # ---------------------------------------------------------------------------
637 # version.h changes when $(KERNELRELEASE) etc change, as defined in
638 # this Makefile
640 uts_len := 64
642 define filechk_version.h
643 if expr length "$(KERNELRELEASE)" \> $(uts_len) >/dev/null ; then \
644 echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \
645 exit 1; \
646 fi; \
647 (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \
648 echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \
649 echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \
651 endef
653 include/linux/version.h: Makefile
654 $(call filechk,version.h)
656 # ---------------------------------------------------------------------------
658 .PHONY: depend dep
659 depend dep:
660 @echo '*** Warning: make $@ is unnecessary now.'
662 # ---------------------------------------------------------------------------
663 # Modules
665 ifdef CONFIG_MODULES
667 # By default, build modules as well
669 all: modules
671 # Build modules
673 .PHONY: modules
674 modules: $(SUBDIRS) $(if $(KBUILD_BUILTIN),vmlinux)
675 @echo ' Building modules, stage 2.';
676 $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
678 # Install modules
680 .PHONY: modules_install
681 modules_install: _modinst_ _modinst_post
683 .PHONY: _modinst_
684 _modinst_:
685 @if [ -z "`$(DEPMOD) -V | grep module-init-tools`" ]; then \
686 echo "Warning: you may need to install module-init-tools"; \
687 echo "See http://www.codemonkey.org.uk/post-halloween-2.5.txt";\
688 sleep 1; \
690 @rm -rf $(MODLIB)/kernel
691 @rm -f $(MODLIB)/build
692 @mkdir -p $(MODLIB)/kernel
693 @ln -s $(TOPDIR) $(MODLIB)/build
694 $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst
696 # If System.map exists, run depmod. This deliberately does not have a
697 # dependency on System.map since that would run the dependency tree on
698 # vmlinux. This depmod is only for convenience to give the initial
699 # boot a modules.dep even before / is mounted read-write. However the
700 # boot script depmod is the master version.
701 ifeq "$(strip $(INSTALL_MOD_PATH))" ""
702 depmod_opts :=
703 else
704 depmod_opts := -b $(INSTALL_MOD_PATH) -r
705 endif
706 .PHONY: _modinst_post
707 _modinst_post: _modinst_
708 if [ -r System.map ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi
710 else # CONFIG_MODULES
712 # Modules not configured
713 # ---------------------------------------------------------------------------
715 modules modules_install: FORCE
716 @echo
717 @echo "The present kernel configuration has modules disabled."
718 @echo "Type 'make config' and enable loadable module support."
719 @echo "Then build a kernel with module support enabled."
720 @echo
721 @exit 1
723 endif # CONFIG_MODULES
725 # Generate asm-offsets.h
726 # ---------------------------------------------------------------------------
728 define filechk_gen-asm-offsets
729 (set -e; \
730 echo "#ifndef __ASM_OFFSETS_H__"; \
731 echo "#define __ASM_OFFSETS_H__"; \
732 echo "/*"; \
733 echo " * DO NOT MODIFY."; \
734 echo " *"; \
735 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
736 echo " *"; \
737 echo " */"; \
738 echo ""; \
739 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
740 echo ""; \
741 echo "#endif" )
742 endef
746 # Cleaning is done on three levels.
747 # make clean Delete all automatically generated files, including
748 # tools and firmware.
749 # make mrproper Delete the current configuration, and related files
750 # Any core files spread around are deleted as well
751 # make distclean Remove editor backup files, patch leftover files and the like
753 # Files removed with 'make clean'
754 CLEAN_FILES += vmlinux System.map MC*
756 # Files removed with 'make mrproper'
757 MRPROPER_FILES += \
758 include/linux/autoconf.h include/linux/version.h \
759 .version .config .config.old config.in config.old \
760 .menuconfig.log \
761 include/asm \
762 .hdepend include/linux/modversions.h \
763 tags TAGS cscope* kernel.spec \
764 .tmp*
766 # Directories removed with 'make mrproper'
767 MRPROPER_DIRS += \
768 $(MODVERDIR) \
769 .tmp_export-objs \
770 include/config \
771 include/linux/modules \
772 include2
774 # clean - Delete all intermediate files
776 clean-dirs += $(addprefix _clean_,$(ALL_SUBDIRS) Documentation/DocBook scripts)
777 .PHONY: $(clean-dirs) clean archclean mrproper archmrproper distclean
778 $(clean-dirs):
779 $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@)
781 quiet_cmd_rmclean = RM $$(CLEAN_FILES)
782 cmd_rmclean = rm -f $(CLEAN_FILES)
783 clean: archclean $(clean-dirs)
784 $(call cmd,rmclean)
785 @find . $(RCS_FIND_IGNORE) \
786 \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \
787 -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \
788 -type f -print | xargs rm -f
790 # mrproper - delete configuration + modules + core files
792 quiet_cmd_mrproper = RM $$(MRPROPER_DIRS) + $$(MRPROPER_FILES)
793 cmd_mrproper = rm -rf $(MRPROPER_DIRS) && rm -f $(MRPROPER_FILES)
794 mrproper distclean: clean archmrproper
795 @echo ' Making $@ in the srctree'
796 @find . $(RCS_FIND_IGNORE) \
797 \( -name '*.orig' -o -name '*.rej' -o -name '*~' \
798 -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \
799 -o -name '.*.rej' -o -size 0 \
800 -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \
801 -type f -print | xargs rm -f
802 $(call cmd,mrproper)
804 # Generate tags for editors
805 # ---------------------------------------------------------------------------
807 define all-sources
808 ( find . $(RCS_FIND_IGNORE) \
809 \( -name include -o -name arch \) -prune -o \
810 -name '*.[chS]' -print; \
811 find arch/$(ARCH) $(RCS_FIND_IGNORE) \
812 -name '*.[chS]' -print; \
813 find include $(RCS_FIND_IGNORE) \
814 \( -name config -o -name 'asm-*' \) -prune \
815 -o -name '*.[chS]' -print; \
816 find include/asm-$(ARCH) $(RCS_FIND_IGNORE) \
817 -name '*.[chS]' -print; \
818 find include/asm-generic $(RCS_FIND_IGNORE) \
819 -name '*.[chS]' -print )
820 endef
822 quiet_cmd_cscope = MAKE $@
823 cmd_cscope = $(all-sources) | cscope -k -b -i -
825 quiet_cmd_TAGS = MAKE $@
826 cmd_TAGS = $(all-sources) | etags -
828 # Exuberant ctags works better with -I
830 quiet_cmd_tags = MAKE $@
831 define cmd_tags
832 rm -f $@; \
833 CTAGSF=`ctags --version | grep -i exuberant >/dev/null && echo "-I __initdata,__exitdata,EXPORT_SYMBOL,EXPORT_SYMBOL_NOVERS"`; \
834 $(all-sources) | xargs ctags $$CTAGSF -a
835 endef
837 cscope: FORCE
838 $(call cmd,cscope)
840 TAGS: FORCE
841 $(call cmd,TAGS)
843 tags: FORCE
844 $(call cmd,tags)
846 # RPM target
847 # ---------------------------------------------------------------------------
849 .PHONY: rpm
851 # Remove hyphens since they have special meaning in RPM filenames
852 KERNELPATH=kernel-$(subst -,,$(KERNELRELEASE))
854 # If you do a make spec before packing the tarball you can rpm -ta it
856 spec:
857 $(CONFIG_SHELL) $(srctree)/scripts/mkspec > $(objtree)/kernel.spec
859 # a) Build a tar ball
860 # b) generate an rpm from it
861 # c) and pack the result
862 # - Use /. to avoid tar packing just the symlink
864 rpm: clean spec
865 set -e; \
866 cd .. ; \
867 ln -sf $(srctree) $(KERNELPATH) ; \
868 tar -cvz $(RCS_TAR_IGNORE) -f $(KERNELPATH).tar.gz $(KERNELPATH)/. ; \
869 rm $(KERNELPATH)
871 set -e; \
872 $(CONFIG_SHELL) $(srctree)/scripts/mkversion > $(objtree)/.tmp_version;\
873 mv -f $(objtree)/.tmp_version $(objtree)/.version;
875 $(RPM) -ta ../$(KERNELPATH).tar.gz
876 rm ../$(KERNELPATH).tar.gz
878 # Brief documentation of the typical targets used
879 # ---------------------------------------------------------------------------
881 help:
882 @echo 'Cleaning targets:'
883 @echo ' clean - remove most generated files but keep the config'
884 @echo ' mrproper - remove all generated files + config + various backup files'
885 @echo ''
886 @echo 'Configuration targets:'
887 @$(MAKE) -f $(srctree)/scripts/kconfig/Makefile help
888 @echo ''
889 @echo 'Other generic targets:'
890 @echo ' all - Build all targets marked with [*]'
891 @echo '* vmlinux - Build the bare kernel'
892 @echo '* modules - Build all modules'
893 @echo ' modules_install - Install all modules'
894 @echo ' dir/ - Build all files in dir and below'
895 @echo ' dir/file.[ois] - Build specified target only'
896 @echo ' rpm - Build a kernel as an RPM package'
897 @echo ' tags/TAGS - Generate tags file for editors'
898 @echo ''
899 @echo 'Documentation targets:'
900 @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
901 @echo ''
902 @echo 'Architecture specific targets ($(ARCH)):'
903 @$(if $(archhelp),$(archhelp),\
904 echo ' No architecture specific help defined for $(ARCH)')
905 @echo ''
906 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
907 @echo ' make O=dir [targets] Locate all output files in "dir", including .config'
908 @echo ' make C=1 [targets] Check all c source with checker tool'
909 @echo ''
910 @echo 'Execute "make" or "make all" to build all targets marked with [*] '
911 @echo 'For further info see the ./README file'
914 # Documentation targets
915 # ---------------------------------------------------------------------------
916 %docs: scripts/docproc FORCE
917 $(Q)$(MAKE) $(build)=Documentation/DocBook $@
919 # Scripts to check various things for consistency
920 # ---------------------------------------------------------------------------
922 configcheck:
923 find * $(RCS_FIND_IGNORE) \
924 -name '*.[hcS]' -type f -print | sort \
925 | xargs $(PERL) -w scripts/checkconfig.pl
927 includecheck:
928 find * $(RCS_FIND_IGNORE) \
929 -name '*.[hcS]' -type f -print | sort \
930 | xargs $(PERL) -w scripts/checkincludes.pl
932 versioncheck:
933 find * $(RCS_FIND_IGNORE) \
934 -name '*.[hcS]' -type f -print | sort \
935 | xargs $(PERL) -w scripts/checkversion.pl
937 endif #ifeq ($(config-targets),1)
938 endif #ifeq ($(mixed-targets),1)
940 # FIXME Should go into a make.lib or something
941 # ===========================================================================
943 a_flags = -Wp,-MD,$(depfile) $(AFLAGS) $(AFLAGS_KERNEL) \
944 $(NOSTDINC_FLAGS) $(CPPFLAGS) \
945 $(modkern_aflags) $(EXTRA_AFLAGS) $(AFLAGS_$(*F).o)
947 quiet_cmd_as_o_S = AS $@
948 cmd_as_o_S = $(CC) $(a_flags) -c -o $@ $<
950 # read all saved command lines
952 targets := $(wildcard $(sort $(targets)))
953 cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
955 ifneq ($(cmd_files),)
956 $(cmd_files): ; # Do not try to update included dependency files
957 include $(cmd_files)
958 endif
960 # execute the command and also postprocess generated .d dependencies
961 # file
963 if_changed_dep = $(if $(strip $? $(filter-out FORCE $(wildcard $^),$^)\
964 $(filter-out $(cmd_$(1)),$(cmd_$@))\
965 $(filter-out $(cmd_$@),$(cmd_$(1)))),\
966 @set -e; \
967 $(if $($(quiet)cmd_$(1)),echo ' $(subst ','\'',$($(quiet)cmd_$(1)))';) \
968 $(cmd_$(1)); \
969 scripts/fixdep $(depfile) $@ '$(subst $$,$$$$,$(subst ','\'',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \
970 rm -f $(depfile); \
971 mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd)
973 # Usage: $(call if_changed_rule,foo)
974 # will check if $(cmd_foo) changed, or any of the prequisites changed,
975 # and if so will execute $(rule_foo)
977 if_changed_rule = $(if $(strip $? \
978 $(filter-out $(cmd_$(1)),$(cmd_$(@F)))\
979 $(filter-out $(cmd_$(@F)),$(cmd_$(1)))),\
980 @$(rule_$(1)))
982 # If quiet is set, only print short version of command
984 cmd = @$(if $($(quiet)cmd_$(1)),echo ' $($(quiet)cmd_$(1))' &&) $(cmd_$(1))
986 # filechk is used to check if the content of a generated file is updated.
987 # Sample usage:
988 # define filechk_sample
989 # echo $KERNELRELEASE
990 # endef
991 # version.h : Makefile
992 # $(call filechk,sample)
993 # The rule defined shall write to stdout the content of the new file.
994 # The existing file will be compared with the new one.
995 # - If no file exist it is created
996 # - If the content differ the new file is used
997 # - If they are equal no change, and no timestamp update
999 define filechk
1000 @set -e; \
1001 echo ' CHK $@'; \
1002 mkdir -p $(dir $@); \
1003 $(filechk_$(1)) < $< > $@.tmp; \
1004 if [ -r $@ ] && cmp -s $@ $@.tmp; then \
1005 rm -f $@.tmp; \
1006 else \
1007 echo ' UPD $@'; \
1008 mv -f $@.tmp $@; \
1010 endef
1012 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.build obj=dir
1013 # Usage:
1014 # $(Q)$(MAKE) $(build)=dir
1015 build := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj
1017 # Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir
1018 # Usage:
1019 # $(Q)$(MAKE) $(clean)=dir
1020 clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj
1022 # $(call descend,<dir>,<target>)
1023 # Recursively call a sub-make in <dir> with target <target>
1024 # Usage is deprecated, because make does not see this as an invocation of make.
1025 descend =$(Q)$(MAKE) -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.build obj=$(1) $(2)
1027 endif # skip-makefile
1029 FORCE: