5 This document describes the Linux kernel Makefiles.
11 === 3 The kbuild files
12 --- 3.1 Goal definitions
13 --- 3.2 Built-in object goals - obj-y
14 --- 3.3 Loadable module goals - obj-m
15 --- 3.4 Objects which export symbols
16 --- 3.5 Library file goals - lib-y
17 --- 3.6 Descending down in directories
18 --- 3.7 Compilation flags
19 --- 3.8 Command line dependency
20 --- 3.9 Dependency tracking
21 --- 3.10 Special Rules
22 --- 3.11 $(CC) support functions
23 --- 3.12 $(LD) support functions
25 === 4 Host Program support
26 --- 4.1 Simple Host Program
27 --- 4.2 Composite Host Programs
28 --- 4.3 Using C++ for host programs
29 --- 4.4 Controlling compiler options for host programs
30 --- 4.5 When host programs are actually built
31 --- 4.6 Using hostprogs-$(CONFIG_FOO)
33 === 5 Kbuild clean infrastructure
35 === 6 Architecture Makefiles
36 --- 6.1 Set variables to tweak the build to the architecture
37 --- 6.2 Add prerequisites to archheaders:
38 --- 6.3 Add prerequisites to archprepare:
39 --- 6.4 List directories to visit when descending
40 --- 6.5 Architecture-specific boot images
41 --- 6.6 Building non-kbuild targets
42 --- 6.7 Commands useful for building a boot image
43 --- 6.8 Custom kbuild commands
44 --- 6.9 Preprocessing linker scripts
45 --- 6.10 Generic header files
46 --- 6.11 Post-link pass
48 === 7 Kbuild syntax for exported headers
49 --- 7.1 no-export-headers
54 === 8 Kbuild Variables
55 === 9 Makefile language
62 The Makefiles have five parts::
64 Makefile the top Makefile.
65 .config the kernel configuration file.
66 arch/$(ARCH)/Makefile the arch Makefile.
67 scripts/Makefile.* common rules etc. for all kbuild Makefiles.
68 kbuild Makefiles there are about 500 of these.
70 The top Makefile reads the .config file, which comes from the kernel
71 configuration process.
73 The top Makefile is responsible for building two major products: vmlinux
74 (the resident kernel image) and modules (any module files).
75 It builds these goals by recursively descending into the subdirectories of
76 the kernel source tree.
77 The list of subdirectories which are visited depends upon the kernel
78 configuration. The top Makefile textually includes an arch Makefile
79 with the name arch/$(ARCH)/Makefile. The arch Makefile supplies
80 architecture-specific information to the top Makefile.
82 Each subdirectory has a kbuild Makefile which carries out the commands
83 passed down from above. The kbuild Makefile uses information from the
84 .config file to construct various file lists used by kbuild to build
85 any built-in or modular targets.
87 scripts/Makefile.* contains all the definitions/rules etc. that
88 are used to build the kernel based on the kbuild makefiles.
94 People have four different relationships with the kernel Makefiles.
96 *Users* are people who build kernels. These people type commands such as
97 "make menuconfig" or "make". They usually do not read or edit
98 any kernel Makefiles (or any other source files).
100 *Normal developers* are people who work on features such as device
101 drivers, file systems, and network protocols. These people need to
102 maintain the kbuild Makefiles for the subsystem they are
103 working on. In order to do this effectively, they need some overall
104 knowledge about the kernel Makefiles, plus detailed knowledge about the
105 public interface for kbuild.
107 *Arch developers* are people who work on an entire architecture, such
108 as sparc or ia64. Arch developers need to know about the arch Makefile
109 as well as kbuild Makefiles.
111 *Kbuild developers* are people who work on the kernel build system itself.
112 These people need to know about all aspects of the kernel Makefiles.
114 This document is aimed towards normal developers and arch developers.
120 Most Makefiles within the kernel are kbuild Makefiles that use the
121 kbuild infrastructure. This chapter introduces the syntax used in the
123 The preferred name for the kbuild files are 'Makefile' but 'Kbuild' can
124 be used and if both a 'Makefile' and a 'Kbuild' file exists, then the 'Kbuild'
127 Section 3.1 "Goal definitions" is a quick intro, further chapters provide
128 more details, with real examples.
133 Goal definitions are the main part (heart) of the kbuild Makefile.
134 These lines define the files to be built, any special compilation
135 options, and any subdirectories to be entered recursively.
137 The most simple kbuild makefile contains one line:
143 This tells kbuild that there is one object in that directory, named
144 foo.o. foo.o will be built from foo.c or foo.S.
146 If foo.o shall be built as a module, the variable obj-m is used.
147 Therefore the following pattern is often used:
151 obj-$(CONFIG_FOO) += foo.o
153 $(CONFIG_FOO) evaluates to either y (for built-in) or m (for module).
154 If CONFIG_FOO is neither y nor m, then the file will not be compiled
157 3.2 Built-in object goals - obj-y
158 ---------------------------------
160 The kbuild Makefile specifies object files for vmlinux
161 in the $(obj-y) lists. These lists depend on the kernel
164 Kbuild compiles all the $(obj-y) files. It then calls
165 "$(AR) rcSTP" to merge these files into one built-in.a file.
166 This is a thin archive without a symbol table. It will be later
167 linked into vmlinux by scripts/link-vmlinux.sh
169 The order of files in $(obj-y) is significant. Duplicates in
170 the lists are allowed: the first instance will be linked into
171 built-in.a and succeeding instances will be ignored.
173 Link order is significant, because certain functions
174 (module_init() / __initcall) will be called during boot in the
175 order they appear. So keep in mind that changing the link
176 order may e.g. change the order in which your SCSI
177 controllers are detected, and thus your disks are renumbered.
181 #drivers/isdn/i4l/Makefile
182 # Makefile for the kernel ISDN subsystem and device drivers.
183 # Each configuration option enables a list of files.
184 obj-$(CONFIG_ISDN_I4L) += isdn.o
185 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
187 3.3 Loadable module goals - obj-m
188 ---------------------------------
190 $(obj-m) specifies object files which are built as loadable
193 A module may be built from one source file or several source
194 files. In the case of one source file, the kbuild makefile
195 simply adds the file to $(obj-m).
199 #drivers/isdn/i4l/Makefile
200 obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
202 Note: In this example $(CONFIG_ISDN_PPP_BSDCOMP) evaluates to 'm'
204 If a kernel module is built from several source files, you specify
205 that you want to build a module in the same way as above; however,
206 kbuild needs to know which object files you want to build your
207 module from, so you have to tell it by setting a $(<module_name>-y)
212 #drivers/isdn/i4l/Makefile
213 obj-$(CONFIG_ISDN_I4L) += isdn.o
214 isdn-y := isdn_net_lib.o isdn_v110.o isdn_common.o
216 In this example, the module name will be isdn.o. Kbuild will
217 compile the objects listed in $(isdn-y) and then run
218 "$(LD) -r" on the list of these files to generate isdn.o.
220 Due to kbuild recognizing $(<module_name>-y) for composite objects,
221 you can use the value of a `CONFIG_` symbol to optionally include an
222 object file as part of a composite object.
227 obj-$(CONFIG_EXT2_FS) += ext2.o
228 ext2-y := balloc.o dir.o file.o ialloc.o inode.o ioctl.o \
229 namei.o super.o symlink.o
230 ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o xattr_user.o \
233 In this example, xattr.o, xattr_user.o and xattr_trusted.o are only
234 part of the composite object ext2.o if $(CONFIG_EXT2_FS_XATTR)
237 Note: Of course, when you are building objects into the kernel,
238 the syntax above will also work. So, if you have CONFIG_EXT2_FS=y,
239 kbuild will build an ext2.o file for you out of the individual
240 parts and then link this into built-in.a, as you would expect.
242 3.4 Objects which export symbols
243 --------------------------------
245 No special notation is required in the makefiles for
246 modules exporting symbols.
248 3.5 Library file goals - lib-y
249 ------------------------------
251 Objects listed with obj-* are used for modules, or
252 combined in a built-in.a for that specific directory.
253 There is also the possibility to list objects that will
254 be included in a library, lib.a.
255 All objects listed with lib-y are combined in a single
256 library for that directory.
257 Objects that are listed in obj-y and additionally listed in
258 lib-y will not be included in the library, since they will
259 be accessible anyway.
260 For consistency, objects listed in lib-m will be included in lib.a.
262 Note that the same kbuild makefile may list files to be built-in
263 and to be part of a library. Therefore the same directory
264 may contain both a built-in.a and a lib.a file.
268 #arch/x86/lib/Makefile
271 This will create a library lib.a based on delay.o. For kbuild to
272 actually recognize that there is a lib.a being built, the directory
273 shall be listed in libs-y.
275 See also "6.4 List directories to visit when descending".
277 Use of lib-y is normally restricted to `lib/` and `arch/*/lib`.
279 3.6 Descending down in directories
280 ----------------------------------
282 A Makefile is only responsible for building objects in its own
283 directory. Files in subdirectories should be taken care of by
284 Makefiles in these subdirs. The build system will automatically
285 invoke make recursively in subdirectories, provided you let it know of
288 To do so, obj-y and obj-m are used.
289 ext2 lives in a separate directory, and the Makefile present in fs/
290 tells kbuild to descend down using the following assignment.
295 obj-$(CONFIG_EXT2_FS) += ext2/
297 If CONFIG_EXT2_FS is set to either 'y' (built-in) or 'm' (modular)
298 the corresponding obj- variable will be set, and kbuild will descend
299 down in the ext2 directory.
301 Kbuild uses this information not only to decide that it needs to visit
302 the directory, but also to decide whether or not to link objects from
303 the directory into vmlinux.
305 When Kbuild descends into the directory with 'y', all built-in objects
306 from that directory are combined into the built-in.a, which will be
307 eventually linked into vmlinux.
309 When Kbuild descends into the directory with 'm', in contrast, nothing
310 from that directory will be linked into vmlinux. If the Makefile in
311 that directory specifies obj-y, those objects will be left orphan.
312 It is very likely a bug of the Makefile or of dependencies in Kconfig.
314 It is good practice to use a `CONFIG_` variable when assigning directory
315 names. This allows kbuild to totally skip the directory if the
316 corresponding `CONFIG_` option is neither 'y' nor 'm'.
318 3.7 Compilation flags
319 ---------------------
321 ccflags-y, asflags-y and ldflags-y
322 These three flags apply only to the kbuild makefile in which they
323 are assigned. They are used for all the normal cc, as and ld
324 invocations happening during a recursive build.
325 Note: Flags with the same behaviour were previously named:
326 EXTRA_CFLAGS, EXTRA_AFLAGS and EXTRA_LDFLAGS.
327 They are still supported but their usage is deprecated.
329 ccflags-y specifies options for compiling with $(CC).
333 # drivers/acpi/acpica/Makefile
334 ccflags-y := -Os -D_LINUX -DBUILDING_ACPICA
335 ccflags-$(CONFIG_ACPI_DEBUG) += -DACPI_DEBUG_OUTPUT
337 This variable is necessary because the top Makefile owns the
338 variable $(KBUILD_CFLAGS) and uses it for compilation flags for the
341 asflags-y specifies assembler options.
345 #arch/sparc/kernel/Makefile
348 ldflags-y specifies options for linking with $(LD).
352 #arch/cris/boot/compressed/Makefile
353 ldflags-y += -T $(srctree)/$(src)/decompress_$(arch-y).lds
355 subdir-ccflags-y, subdir-asflags-y
356 The two flags listed above are similar to ccflags-y and asflags-y.
357 The difference is that the subdir- variants have effect for the kbuild
358 file where they are present and all subdirectories.
359 Options specified using subdir-* are added to the commandline before
360 the options specified using the non-subdir variants.
364 subdir-ccflags-y := -Werror
367 CFLAGS_$@ and AFLAGS_$@ only apply to commands in current
370 $(CFLAGS_$@) specifies per-file options for $(CC). The $@
371 part has a literal value which specifies the file that it is for.
375 # drivers/scsi/Makefile
376 CFLAGS_aha152x.o = -DAHA152X_STAT -DAUTOCONF
377 CFLAGS_gdth.o = # -DDEBUG_GDTH=2 -D__SERIAL__ -D__COM2__ \
380 These two lines specify compilation flags for aha152x.o and gdth.o.
382 $(AFLAGS_$@) is a similar feature for source files in assembly
387 # arch/arm/kernel/Makefile
388 AFLAGS_head.o := -DTEXT_OFFSET=$(TEXT_OFFSET)
389 AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312
390 AFLAGS_iwmmxt.o := -Wa,-mcpu=iwmmxt
393 3.9 Dependency tracking
394 -----------------------
396 Kbuild tracks dependencies on the following:
398 1) All prerequisite files (both `*.c` and `*.h`)
399 2) `CONFIG_` options used in all prerequisite files
400 3) Command-line used to compile target
402 Thus, if you change an option to $(CC) all affected files will
408 Special rules are used when the kbuild infrastructure does
409 not provide the required support. A typical example is
410 header files generated during the build process.
411 Another example are the architecture-specific Makefiles which
412 need special rules to prepare boot images etc.
414 Special rules are written as normal Make rules.
415 Kbuild is not executing in the directory where the Makefile is
416 located, so all special rules shall provide a relative
417 path to prerequisite files and target files.
419 Two variables are used when defining special rules:
422 $(src) is a relative path which points to the directory
423 where the Makefile is located. Always use $(src) when
424 referring to files located in the src tree.
427 $(obj) is a relative path which points to the directory
428 where the target is saved. Always use $(obj) when
429 referring to generated files.
433 #drivers/scsi/Makefile
434 $(obj)/53c8xx_d.h: $(src)/53c7,8xx.scr $(src)/script_asm.pl
435 $(CPP) -DCHIP=810 - < $< | ... $(src)/script_asm.pl
437 This is a special rule, following the normal syntax
440 The target file depends on two prerequisite files. References
441 to the target file are prefixed with $(obj), references
442 to prerequisites are referenced with $(src) (because they are not
446 echoing information to user in a rule is often a good practice
447 but when execution "make -s" one does not expect to see any output
448 except for warnings/errors.
449 To support this kbuild defines $(kecho) which will echo out the
450 text following $(kecho) to stdout except if "make -s" is used.
454 #arch/blackfin/boot/Makefile
455 $(obj)/vmImage: $(obj)/vmlinux.gz
456 $(call if_changed,uimage)
457 @$(kecho) 'Kernel: $@ is ready'
460 3.11 $(CC) support functions
461 ----------------------------
463 The kernel may be built with several different versions of
464 $(CC), each supporting a unique set of features and options.
465 kbuild provides basic support to check for valid options for $(CC).
466 $(CC) is usually the gcc compiler, but other alternatives are
470 as-option is used to check if $(CC) -- when used to compile
471 assembler (`*.S`) files -- supports the given option. An optional
472 second option may be specified if the first option is not supported.
477 cflags-y += $(call as-option,-Wa$(comma)-isa=$(isa-y),)
479 In the above example, cflags-y will be assigned the option
480 -Wa$(comma)-isa=$(isa-y) if it is supported by $(CC).
481 The second argument is optional, and if supplied will be used
482 if first argument is not supported.
485 as-instr checks if the assembler reports a specific instruction
486 and then outputs either option1 or option2
487 C escapes are supported in the test instruction
488 Note: as-instr-option uses KBUILD_AFLAGS for assembler options
491 cc-option is used to check if $(CC) supports a given option, and if
492 not supported to use an optional second option.
497 cflags-y += $(call cc-option,-march=pentium-mmx,-march=i586)
499 In the above example, cflags-y will be assigned the option
500 -march=pentium-mmx if supported by $(CC), otherwise -march=i586.
501 The second argument to cc-option is optional, and if omitted,
502 cflags-y will be assigned no value if first option is not supported.
503 Note: cc-option uses KBUILD_CFLAGS for $(CC) options
506 cc-option-yn is used to check if gcc supports a given option
507 and return 'y' if supported, otherwise 'n'.
512 biarch := $(call cc-option-yn, -m32)
513 aflags-$(biarch) += -a32
514 cflags-$(biarch) += -m32
516 In the above example, $(biarch) is set to y if $(CC) supports the -m32
517 option. When $(biarch) equals 'y', the expanded variables $(aflags-y)
518 and $(cflags-y) will be assigned the values -a32 and -m32,
520 Note: cc-option-yn uses KBUILD_CFLAGS for $(CC) options
523 cc-disable-warning checks if gcc supports a given warning and returns
524 the commandline switch to disable it. This special function is needed,
525 because gcc 4.4 and later accept any unknown -Wno-* option and only
526 warn about it if there is another warning in the source file.
530 KBUILD_CFLAGS += $(call cc-disable-warning, unused-but-set-variable)
532 In the above example, -Wno-unused-but-set-variable will be added to
533 KBUILD_CFLAGS only if gcc really accepts it.
536 cc-ifversion tests the version of $(CC) and equals the fourth parameter
537 if version expression is true, or the fifth (if given) if the version
542 #fs/reiserfs/Makefile
543 ccflags-y := $(call cc-ifversion, -lt, 0402, -O1)
545 In this example, ccflags-y will be assigned the value -O1 if the
546 $(CC) version is less than 4.2.
547 cc-ifversion takes all the shell operators:
548 -eq, -ne, -lt, -le, -gt, and -ge
549 The third parameter may be a text as in this example, but it may also
550 be an expanded variable or a macro.
553 cc-cross-prefix is used to check if there exists a $(CC) in path with
554 one of the listed prefixes. The first prefix where there exist a
555 prefix$(CC) in the PATH is returned - and if no prefix$(CC) is found
556 then nothing is returned.
557 Additional prefixes are separated by a single space in the
558 call of cc-cross-prefix.
559 This functionality is useful for architecture Makefiles that try
560 to set CROSS_COMPILE to well-known values but may have several
561 values to select between.
562 It is recommended only to try to set CROSS_COMPILE if it is a cross
563 build (host arch is different from target arch). And if CROSS_COMPILE
564 is already set then leave it with the old value.
569 ifneq ($(SUBARCH),$(ARCH))
570 ifeq ($(CROSS_COMPILE),)
571 CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu-)
575 3.12 $(LD) support functions
576 ----------------------------
579 ld-option is used to check if $(LD) supports the supplied option.
580 ld-option takes two options as arguments.
581 The second argument is an optional option that can be used if the
582 first option is not supported by $(LD).
587 LDFLAGS_vmlinux += $(call ld-option, -X)
590 4 Host Program support
591 ======================
593 Kbuild supports building executables on the host for use during the
595 Two steps are required in order to use a host executable.
597 The first step is to tell kbuild that a host program exists. This is
598 done utilising the variable hostprogs-y.
600 The second step is to add an explicit dependency to the executable.
601 This can be done in two ways. Either add the dependency in a rule,
602 or utilise the variable $(always).
603 Both possibilities are described in the following.
605 4.1 Simple Host Program
606 -----------------------
608 In some cases there is a need to compile and run a program on the
609 computer where the build is running.
610 The following line tells kbuild that the program bin2hex shall be
611 built on the build host.
615 hostprogs-y := bin2hex
617 Kbuild assumes in the above example that bin2hex is made from a single
618 c-source file named bin2hex.c located in the same directory as
621 4.2 Composite Host Programs
622 ---------------------------
624 Host programs can be made up based on composite objects.
625 The syntax used to define composite objects for host programs is
626 similar to the syntax used for kernel objects.
627 $(<executable>-objs) lists all objects used to link the final
632 #scripts/lxdialog/Makefile
633 hostprogs-y := lxdialog
634 lxdialog-objs := checklist.o lxdialog.o
636 Objects with extension .o are compiled from the corresponding .c
637 files. In the above example, checklist.c is compiled to checklist.o
638 and lxdialog.c is compiled to lxdialog.o.
640 Finally, the two .o files are linked to the executable, lxdialog.
641 Note: The syntax <executable>-y is not permitted for host-programs.
643 4.3 Using C++ for host programs
644 -------------------------------
646 kbuild offers support for host programs written in C++. This was
647 introduced solely to support kconfig, and is not recommended
652 #scripts/kconfig/Makefile
654 qconf-cxxobjs := qconf.o
656 In the example above the executable is composed of the C++ file
657 qconf.cc - identified by $(qconf-cxxobjs).
659 If qconf is composed of a mixture of .c and .cc files, then an
660 additional line can be used to identify this.
664 #scripts/kconfig/Makefile
666 qconf-cxxobjs := qconf.o
667 qconf-objs := check.o
669 4.4 Controlling compiler options for host programs
670 --------------------------------------------------
672 When compiling host programs, it is possible to set specific flags.
673 The programs will always be compiled utilising $(HOSTCC) passed
674 the options specified in $(KBUILD_HOSTCFLAGS).
675 To set flags that will take effect for all host programs created
676 in that Makefile, use the variable HOST_EXTRACFLAGS.
680 #scripts/lxdialog/Makefile
681 HOST_EXTRACFLAGS += -I/usr/include/ncurses
683 To set specific flags for a single file the following construction
688 #arch/ppc64/boot/Makefile
689 HOSTCFLAGS_piggyback.o := -DKERNELBASE=$(KERNELBASE)
691 It is also possible to specify additional options to the linker.
695 #scripts/kconfig/Makefile
696 HOSTLDLIBS_qconf := -L$(QTDIR)/lib
698 When linking qconf, it will be passed the extra option
701 4.5 When host programs are actually built
702 -----------------------------------------
704 Kbuild will only build host-programs when they are referenced
706 This is possible in two ways:
708 (1) List the prerequisite explicitly in a special rule.
712 #drivers/pci/Makefile
713 hostprogs-y := gen-devlist
714 $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
715 ( cd $(obj); ./gen-devlist ) < $<
717 The target $(obj)/devlist.h will not be built before
718 $(obj)/gen-devlist is updated. Note that references to
719 the host programs in special rules must be prefixed with $(obj).
723 When there is no suitable special rule, and the host program
724 shall be built when a makefile is entered, the $(always)
725 variable shall be used.
729 #scripts/lxdialog/Makefile
730 hostprogs-y := lxdialog
731 always := $(hostprogs-y)
733 This will tell kbuild to build lxdialog even if not referenced in
736 4.6 Using hostprogs-$(CONFIG_FOO)
737 ---------------------------------
739 A typical pattern in a Kbuild file looks like this:
744 hostprogs-$(CONFIG_KALLSYMS) += kallsyms
746 Kbuild knows about both 'y' for built-in and 'm' for module.
747 So if a config symbol evaluates to 'm', kbuild will still build
748 the binary. In other words, Kbuild handles hostprogs-m exactly
749 like hostprogs-y. But only hostprogs-y is recommended to be used
750 when no CONFIG symbols are involved.
752 5 Kbuild clean infrastructure
753 =============================
755 "make clean" deletes most generated files in the obj tree where the kernel
756 is compiled. This includes generated files such as host programs.
757 Kbuild knows targets listed in $(hostprogs-y), $(hostprogs-m), $(always),
758 $(extra-y) and $(targets). They are all deleted during "make clean".
759 Files matching the patterns "*.[oas]", "*.ko", plus some additional files
760 generated by kbuild are deleted all over the kernel src tree when
761 "make clean" is executed.
763 Additional files or directories can be specified in kbuild makefiles by use of
769 clean-files := crc32table.h
771 When executing "make clean", the file "crc32table.h" will be deleted.
772 Kbuild will assume files to be in the same relative directory as the
773 Makefile, except if prefixed with $(objtree).
775 To exclude certain files or directories from make clean, use the
776 $(no-clean-files) variable.
778 Usually kbuild descends down in subdirectories due to "obj-* := dir/",
779 but in the architecture makefiles where the kbuild infrastructure
780 is not sufficient this sometimes needs to be explicit.
784 #arch/x86/boot/Makefile
785 subdir- := compressed/
787 The above assignment instructs kbuild to descend down in the
788 directory compressed/ when "make clean" is executed.
790 To support the clean infrastructure in the Makefiles that build the
791 final bootimage there is an optional target named archclean:
797 $(Q)$(MAKE) $(clean)=arch/x86/boot
799 When "make clean" is executed, make will descend down in arch/x86/boot,
800 and clean as usual. The Makefile located in arch/x86/boot/ may use
801 the subdir- trick to descend further down.
803 Note 1: arch/$(ARCH)/Makefile cannot use "subdir-", because that file is
804 included in the top level makefile, and the kbuild infrastructure
805 is not operational at that point.
807 Note 2: All directories listed in core-y, libs-y, drivers-y and net-y will
808 be visited during "make clean".
810 6 Architecture Makefiles
811 ========================
813 The top level Makefile sets up the environment and does the preparation,
814 before starting to descend down in the individual directories.
815 The top level makefile contains the generic part, whereas
816 arch/$(ARCH)/Makefile contains what is required to set up kbuild
817 for said architecture.
818 To do so, arch/$(ARCH)/Makefile sets up a number of variables and defines
821 When kbuild executes, the following steps are followed (roughly):
823 1) Configuration of the kernel => produce .config
824 2) Store kernel version in include/linux/version.h
825 3) Updating all other prerequisites to the target prepare:
826 - Additional prerequisites are specified in arch/$(ARCH)/Makefile
827 4) Recursively descend down in all directories listed in
828 init-* core* drivers-* net-* libs-* and build all targets.
829 - The values of the above variables are expanded in arch/$(ARCH)/Makefile.
830 5) All object files are then linked and the resulting file vmlinux is
831 located at the root of the obj tree.
832 The very first objects linked are listed in head-y, assigned by
833 arch/$(ARCH)/Makefile.
834 6) Finally, the architecture-specific part does any required post processing
835 and builds the final bootimage.
836 - This includes building boot records
837 - Preparing initrd images and the like
840 6.1 Set variables to tweak the build to the architecture
841 --------------------------------------------------------
844 Generic $(LD) options
846 Flags used for all invocations of the linker.
847 Often specifying the emulation is sufficient.
852 LDFLAGS := -m elf_s390
854 Note: ldflags-y can be used to further customise
855 the flags used. See chapter 3.7.
858 Options for $(LD) when linking vmlinux
860 LDFLAGS_vmlinux is used to specify additional flags to pass to
861 the linker when linking the final vmlinux image.
862 LDFLAGS_vmlinux uses the LDFLAGS_$@ support.
867 LDFLAGS_vmlinux := -e stext
872 When $(call if_changed,objcopy) is used to translate a .o file,
873 the flags specified in OBJCOPYFLAGS will be used.
874 $(call if_changed,objcopy) is often used to generate raw binaries on
880 OBJCOPYFLAGS := -O binary
882 #arch/s390/boot/Makefile
883 $(obj)/image: vmlinux FORCE
884 $(call if_changed,objcopy)
886 In this example, the binary $(obj)/image is a binary version of
887 vmlinux. The usage of $(call if_changed,xxx) will be described later.
892 Default value - see top level Makefile
893 Append or modify as required per architecture.
897 #arch/sparc64/Makefile
898 KBUILD_AFLAGS += -m64 -mcpu=ultrasparc
903 Default value - see top level Makefile
904 Append or modify as required per architecture.
906 Often, the KBUILD_CFLAGS variable depends on the configuration.
910 #arch/x86/boot/compressed/Makefile
911 cflags-$(CONFIG_X86_32) := -march=i386
912 cflags-$(CONFIG_X86_64) := -mcmodel=small
913 KBUILD_CFLAGS += $(cflags-y)
915 Many arch Makefiles dynamically run the target C compiler to
916 probe supported options::
921 cflags-$(CONFIG_MPENTIUMII) += $(call cc-option,\
922 -march=pentium2,-march=i686)
924 # Disable unit-at-a-time mode ...
925 KBUILD_CFLAGS += $(call cc-option,-fno-unit-at-a-time)
929 The first example utilises the trick that a config option expands
930 to 'y' when selected.
933 Assembler options specific for built-in
935 $(KBUILD_AFLAGS_KERNEL) contains extra C compiler flags used to compile
936 resident kernel code.
939 Assembler options specific for modules
941 $(KBUILD_AFLAGS_MODULE) is used to add arch-specific options that
942 are used for assembler.
944 From commandline AFLAGS_MODULE shall be used (see kbuild.txt).
947 $(CC) options specific for built-in
949 $(KBUILD_CFLAGS_KERNEL) contains extra C compiler flags used to compile
950 resident kernel code.
953 Options for $(CC) when building modules
955 $(KBUILD_CFLAGS_MODULE) is used to add arch-specific options that
957 From commandline CFLAGS_MODULE shall be used (see kbuild.txt).
959 KBUILD_LDFLAGS_MODULE
960 Options for $(LD) when linking modules
962 $(KBUILD_LDFLAGS_MODULE) is used to add arch-specific options
963 used when linking modules. This is often a linker script.
965 From commandline LDFLAGS_MODULE shall be used (see kbuild.txt).
969 The linker script with full path. Assigned by the top-level Makefile.
973 The module linker script with full path. Assigned by the top-level
974 Makefile and additionally by the arch Makefile.
978 All object files for vmlinux. They are linked to vmlinux in the same
979 order as listed in KBUILD_VMLINUX_OBJS.
983 All .a "lib" files for vmlinux. KBUILD_VMLINUX_OBJS and
984 KBUILD_VMLINUX_LIBS together specify all the object files used to
987 6.2 Add prerequisites to archheaders
988 ------------------------------------
990 The archheaders: rule is used to generate header files that
991 may be installed into user space by "make header_install".
993 It is run before "make archprepare" when run on the
997 6.3 Add prerequisites to archprepare
998 ------------------------------------
1000 The archprepare: rule is used to list prerequisites that need to be
1001 built before starting to descend down in the subdirectories.
1002 This is usually used for header files containing assembler constants.
1007 archprepare: maketools
1009 In this example, the file target maketools will be processed
1010 before descending down in the subdirectories.
1011 See also chapter XXX-TODO that describe how kbuild supports
1012 generating offset header files.
1015 6.4 List directories to visit when descending
1016 ---------------------------------------------
1018 An arch Makefile cooperates with the top Makefile to define variables
1019 which specify how to build the vmlinux file. Note that there is no
1020 corresponding arch-specific section for modules; the module-building
1021 machinery is all architecture-independent.
1024 head-y, init-y, core-y, libs-y, drivers-y, net-y
1025 $(head-y) lists objects to be linked first in vmlinux.
1027 $(libs-y) lists directories where a lib.a archive can be located.
1029 The rest list directories where a built-in.a object file can be
1032 $(init-y) objects will be located after $(head-y).
1034 Then the rest follows in this order:
1036 $(core-y), $(libs-y), $(drivers-y) and $(net-y).
1038 The top level Makefile defines values for all generic directories,
1039 and arch/$(ARCH)/Makefile only adds architecture-specific
1044 #arch/sparc64/Makefile
1045 core-y += arch/sparc64/kernel/
1046 libs-y += arch/sparc64/prom/ arch/sparc64/lib/
1047 drivers-$(CONFIG_OPROFILE) += arch/sparc64/oprofile/
1050 6.5 Architecture-specific boot images
1051 -------------------------------------
1053 An arch Makefile specifies goals that take the vmlinux file, compress
1054 it, wrap it in bootstrapping code, and copy the resulting files
1055 somewhere. This includes various kinds of installation commands.
1056 The actual goals are not standardized across architectures.
1058 It is common to locate any additional processing in a boot/
1059 directory below arch/$(ARCH)/.
1061 Kbuild does not provide any smart way to support building a
1062 target specified in boot/. Therefore arch/$(ARCH)/Makefile shall
1063 call make manually to build a target in boot/.
1065 The recommended approach is to include shortcuts in
1066 arch/$(ARCH)/Makefile, and use the full path when calling down
1067 into the arch/$(ARCH)/boot/Makefile.
1072 boot := arch/x86/boot
1074 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
1076 "$(Q)$(MAKE) $(build)=<dir>" is the recommended way to invoke
1077 make in a subdirectory.
1079 There are no rules for naming architecture-specific targets,
1080 but executing "make help" will list all relevant targets.
1081 To support this, $(archhelp) must be defined.
1087 echo '* bzImage - Image (arch/$(ARCH)/boot/bzImage)'
1090 When make is executed without arguments, the first goal encountered
1091 will be built. In the top level Makefile the first goal present
1093 An architecture shall always, per default, build a bootable image.
1094 In "make help", the default goal is highlighted with a '*'.
1095 Add a new prerequisite to all: to select a default goal different
1103 When "make" is executed without arguments, bzImage will be built.
1105 6.6 Building non-kbuild targets
1106 -------------------------------
1109 extra-y specifies additional targets created in the current
1110 directory, in addition to any targets specified by `obj-*`.
1112 Listing all targets in extra-y is required for two purposes:
1114 1) Enable kbuild to check changes in command lines
1116 - When $(call if_changed,xxx) is used
1118 2) kbuild knows what files to delete during "make clean"
1122 #arch/x86/kernel/Makefile
1123 extra-y := head.o init_task.o
1125 In this example, extra-y is used to list object files that
1126 shall be built, but shall not be linked as part of built-in.a.
1128 6.7 Commands useful for building a boot image
1129 ---------------------------------------------
1131 Kbuild provides a few macros that are useful when building a
1135 if_changed is the infrastructure used for the following commands.
1139 target: source(s) FORCE
1140 $(call if_changed,ld/objcopy/gzip/...)
1142 When the rule is evaluated, it is checked to see if any files
1143 need an update, or the command line has changed since the last
1144 invocation. The latter will force a rebuild if any options
1145 to the executable have changed.
1146 Any target that utilises if_changed must be listed in $(targets),
1147 otherwise the command line check will fail, and the target will
1149 Assignments to $(targets) are without $(obj)/ prefix.
1150 if_changed may be used in conjunction with custom commands as
1151 defined in 6.8 "Custom kbuild commands".
1153 Note: It is a typical mistake to forget the FORCE prerequisite.
1154 Another common pitfall is that whitespace is sometimes
1155 significant; for instance, the below will fail (note the extra space
1158 target: source(s) FORCE
1160 **WRONG!** $(call if_changed, ld/objcopy/gzip/...)
1163 if_changed should not be used more than once per target.
1164 It stores the executed command in a corresponding .cmd
1166 file and multiple calls would result in overwrites and
1167 unwanted results when the target is up to date and only the
1168 tests on changed commands trigger execution of commands.
1171 Link target. Often, LDFLAGS_$@ is used to set specific options to ld.
1175 #arch/x86/boot/Makefile
1176 LDFLAGS_bootsect := -Ttext 0x0 -s --oformat binary
1177 LDFLAGS_setup := -Ttext 0x0 -s --oformat binary -e begtext
1179 targets += setup setup.o bootsect bootsect.o
1180 $(obj)/setup $(obj)/bootsect: %: %.o FORCE
1181 $(call if_changed,ld)
1183 In this example, there are two possible targets, requiring different
1184 options to the linker. The linker options are specified using the
1185 LDFLAGS_$@ syntax - one for each potential target.
1186 $(targets) are assigned all potential targets, by which kbuild knows
1187 the targets and will:
1189 1) check for commandline changes
1190 2) delete target during make clean
1192 The ": %: %.o" part of the prerequisite is a shorthand that
1193 frees us from listing the setup.o and bootsect.o files.
1196 It is a common mistake to forget the "targets :=" assignment,
1197 resulting in the target file being recompiled for no
1201 Copy binary. Uses OBJCOPYFLAGS usually specified in
1202 arch/$(ARCH)/Makefile.
1203 OBJCOPYFLAGS_$@ may be used to set additional options.
1206 Compress target. Use maximum compression to compress target.
1210 #arch/x86/boot/compressed/Makefile
1211 $(obj)/vmlinux.bin.gz: $(vmlinux.bin.all-y) FORCE
1212 $(call if_changed,gzip)
1215 Create flattened device tree blob object suitable for linking
1216 into vmlinux. Device tree blobs linked into vmlinux are placed
1217 in an init section in the image. Platform code *must* copy the
1218 blob to non-init memory prior to calling unflatten_device_tree().
1220 To use this command, simply add `*.dtb` into obj-y or targets, or make
1221 some other target depend on `%.dtb`
1223 A central rule exists to create `$(obj)/%.dtb` from `$(src)/%.dts`;
1224 architecture Makefiles do no need to explicitly write out that rule.
1229 DTC_FLAGS ?= -p 1024
1231 6.8 Custom kbuild commands
1232 --------------------------
1234 When kbuild is executing with KBUILD_VERBOSE=0, then only a shorthand
1235 of a command is normally displayed.
1236 To enable this behaviour for custom commands kbuild requires
1237 two variables to be set::
1239 quiet_cmd_<command> - what shall be echoed
1240 cmd_<command> - the command to execute
1245 quiet_cmd_image = BUILD $@
1246 cmd_image = $(obj)/tools/build $(BUILDFLAGS) \
1247 $(obj)/vmlinux.bin > $@
1250 $(obj)/bzImage: $(obj)/vmlinux.bin $(obj)/tools/build FORCE
1251 $(call if_changed,image)
1252 @echo 'Kernel: $@ is ready'
1254 When updating the $(obj)/bzImage target, the line:
1256 BUILD arch/x86/boot/bzImage
1258 will be displayed with "make KBUILD_VERBOSE=0".
1261 --- 6.9 Preprocessing linker scripts
1263 When the vmlinux image is built, the linker script
1264 arch/$(ARCH)/kernel/vmlinux.lds is used.
1265 The script is a preprocessed variant of the file vmlinux.lds.S
1266 located in the same directory.
1267 kbuild knows .lds files and includes a rule `*lds.S` -> `*lds`.
1271 #arch/x86/kernel/Makefile
1272 always := vmlinux.lds
1275 export CPPFLAGS_vmlinux.lds += -P -C -U$(ARCH)
1277 The assignment to $(always) is used to tell kbuild to build the
1279 The assignment to $(CPPFLAGS_vmlinux.lds) tells kbuild to use the
1280 specified options when building the target vmlinux.lds.
1282 When building the `*.lds` target, kbuild uses the variables::
1284 KBUILD_CPPFLAGS : Set in top-level Makefile
1285 cppflags-y : May be set in the kbuild makefile
1286 CPPFLAGS_$(@F) : Target-specific flags.
1287 Note that the full filename is used in this
1290 The kbuild infrastructure for `*lds` files is used in several
1291 architecture-specific files.
1293 6.10 Generic header files
1294 -------------------------
1296 The directory include/asm-generic contains the header files
1297 that may be shared between individual architectures.
1298 The recommended approach how to use a generic header file is
1299 to list the file in the Kbuild file.
1300 See "7.2 generic-y" for further info on syntax etc.
1305 If the file arch/xxx/Makefile.postlink exists, this makefile
1306 will be invoked for post-link objects (vmlinux and modules.ko)
1307 for architectures to run post-link passes on. Must also handle
1310 This pass runs after kallsyms generation. If the architecture
1311 needs to modify symbol locations, rather than manipulate the
1312 kallsyms, it may be easier to add another postlink target for
1313 .tmp_vmlinux? targets to be called from link-vmlinux.sh.
1315 For example, powerpc uses this to check relocation sanity of
1316 the linked vmlinux file.
1318 7 Kbuild syntax for exported headers
1319 ------------------------------------
1321 The kernel includes a set of headers that is exported to userspace.
1322 Many headers can be exported as-is but other headers require a
1323 minimal pre-processing before they are ready for user-space.
1324 The pre-processing does:
1326 - drop kernel-specific annotations
1327 - drop include of compiler.h
1328 - drop all sections that are kernel internal (guarded by `ifdef __KERNEL__`)
1330 All headers under include/uapi/, include/generated/uapi/,
1331 arch/<arch>/include/uapi/ and arch/<arch>/include/generated/uapi/
1334 A Kbuild file may be defined under arch/<arch>/include/uapi/asm/ and
1335 arch/<arch>/include/asm/ to list asm files coming from asm-generic.
1336 See subsequent chapter for the syntax of the Kbuild file.
1338 7.1 no-export-headers
1339 ---------------------
1341 no-export-headers is essentially used by include/uapi/linux/Kbuild to
1342 avoid exporting specific headers (e.g. kvm.h) on architectures that do
1343 not support it. It should be avoided as much as possible.
1348 If an architecture uses a verbatim copy of a header from
1349 include/asm-generic then this is listed in the file
1350 arch/$(ARCH)/include/asm/Kbuild like this:
1354 #arch/x86/include/asm/Kbuild
1355 generic-y += termios.h
1358 During the prepare phase of the build a wrapper include
1359 file is generated in the directory::
1361 arch/$(ARCH)/include/generated/asm
1363 When a header is exported where the architecture uses
1364 the generic header a similar wrapper is generated as part
1365 of the set of exported headers in the directory::
1369 The generated wrapper will in both cases look like the following:
1371 Example: termios.h::
1373 #include <asm-generic/termios.h>
1378 If an architecture generates other header files alongside generic-y
1379 wrappers, generated-y specifies them.
1381 This prevents them being treated as stale asm-generic wrappers and
1386 #arch/x86/include/asm/Kbuild
1387 generated-y += syscalls_32.h
1392 mandatory-y is essentially used by include/(uapi/)asm-generic/Kbuild
1393 to define the minimum set of ASM headers that all architectures must have.
1395 This works like optional generic-y. If a mandatory header is missing
1396 in arch/$(ARCH)/include/(uapi/)/asm, Kbuild will automatically generate
1397 a wrapper of the asm-generic one.
1399 The convention is to list one subdir per line and
1400 preferably in alphabetic order.
1405 The top Makefile exports the following variables:
1407 VERSION, PATCHLEVEL, SUBLEVEL, EXTRAVERSION
1408 These variables define the current kernel version. A few arch
1409 Makefiles actually use these values directly; they should use
1410 $(KERNELRELEASE) instead.
1412 $(VERSION), $(PATCHLEVEL), and $(SUBLEVEL) define the basic
1413 three-part version number, such as "2", "4", and "0". These three
1414 values are always numeric.
1416 $(EXTRAVERSION) defines an even tinier sublevel for pre-patches
1417 or additional patches. It is usually some non-numeric string
1418 such as "-pre4", and is often blank.
1421 $(KERNELRELEASE) is a single string such as "2.4.0-pre4", suitable
1422 for constructing installation directory names or showing in
1423 version strings. Some arch Makefiles use it for this purpose.
1426 This variable defines the target architecture, such as "i386",
1427 "arm", or "sparc". Some kbuild Makefiles test $(ARCH) to
1428 determine which files to compile.
1430 By default, the top Makefile sets $(ARCH) to be the same as the
1431 host system architecture. For a cross build, a user may
1432 override the value of $(ARCH) on the command line::
1438 This variable defines a place for the arch Makefiles to install
1439 the resident kernel image and System.map file.
1440 Use this for architecture-specific install targets.
1442 INSTALL_MOD_PATH, MODLIB
1443 $(INSTALL_MOD_PATH) specifies a prefix to $(MODLIB) for module
1444 installation. This variable is not defined in the Makefile but
1445 may be passed in by the user if desired.
1447 $(MODLIB) specifies the directory for module installation.
1448 The top Makefile defines $(MODLIB) to
1449 $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE). The user may
1450 override this value on the command line if desired.
1453 If this variable is specified, it will cause modules to be stripped
1454 after they are installed. If INSTALL_MOD_STRIP is '1', then the
1455 default option --strip-debug will be used. Otherwise, the
1456 INSTALL_MOD_STRIP value will be used as the option(s) to the strip
1463 The kernel Makefiles are designed to be run with GNU Make. The Makefiles
1464 use only the documented features of GNU Make, but they do use many
1467 GNU Make supports elementary list-processing functions. The kernel
1468 Makefiles use a novel style of list building and manipulation with few
1471 GNU Make has two assignment operators, ":=" and "=". ":=" performs
1472 immediate evaluation of the right-hand side and stores an actual string
1473 into the left-hand side. "=" is like a formula definition; it stores the
1474 right-hand side in an unevaluated form and then evaluates this form each
1475 time the left-hand side is used.
1477 There are some cases where "=" is appropriate. Usually, though, ":="
1478 is the right choice.
1483 - Original version made by Michael Elizabeth Chastain, <mailto:mec@shout.net>
1484 - Updates by Kai Germaschewski <kai@tp1.ruhr-uni-bochum.de>
1485 - Updates by Sam Ravnborg <sam@ravnborg.org>
1486 - Language QA by Jan Engelhardt <jengelh@gmx.de>
1491 - Describe how kbuild supports shipped files with _shipped.
1492 - Generating offset header files.
1493 - Add more variables to section 7?