Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

kbuild: remove unimportant comments from ./Kbuild

Every time we add/remove a target, we need to touch the header part,
including renumbering. This is not so important information.

Numbering targets is rather misleading because they are not necessarily
generated in this order. For example, 1) and 2) can be executed
simultaneously when the -j option is given.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>

+4 -11
+4 -11
Kbuild
··· 1 1 # SPDX-License-Identifier: GPL-2.0 2 2 # 3 3 # Kbuild for top-level directory of the kernel 4 - # This file takes care of the following: 5 - # 1) Generate bounds.h 6 - # 2) Generate timeconst.h 7 - # 3) Generate asm-offsets.h (may need bounds.h and timeconst.h) 8 - # 4) Check for missing system calls 9 4 10 5 ##### 11 - # 1) Generate bounds.h 6 + # Generate bounds.h 12 7 13 8 bounds-file := include/generated/bounds.h 14 9 ··· 14 19 $(call filechk,offsets,__LINUX_BOUNDS_H__) 15 20 16 21 ##### 17 - # 2) Generate timeconst.h 22 + # Generate timeconst.h 18 23 19 24 timeconst-file := include/generated/timeconst.h 20 25 ··· 26 31 $(call filechk,gentimeconst) 27 32 28 33 ##### 29 - # 3) Generate asm-offsets.h 30 - # 34 + # Generate asm-offsets.h 31 35 32 36 offsets-file := include/generated/asm-offsets.h 33 37 ··· 39 45 $(call filechk,offsets,__ASM_OFFSETS_H__) 40 46 41 47 ##### 42 - # 4) Check for missing system calls 43 - # 48 + # Check for missing system calls 44 49 45 50 always += missing-syscalls 46 51 targets += missing-syscalls