Blame view
Kbuild
2.11 KB
86feeaa81 kbuild: full depe... |
1 2 3 |
# # Kbuild for top-level directory of the kernel # This file takes care of the following: |
1cdf25d70 kbuild: create a ... |
4 5 6 |
# 1) Generate bounds.h # 2) Generate asm-offsets.h (may need bounds.h) # 3) Check for missing system calls |
86feeaa81 kbuild: full depe... |
7 |
|
39664e2f3 kbuild: merge bou... |
8 9 10 11 12 13 14 |
# Default sed regexp - multiline due to syntax constraints define sed-y "/^->/{s:->#\(.*\):/* \1 */:; \ s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \ s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \ s:->::; p;}" endef |
1cdf25d70 kbuild: create a ... |
15 |
|
70a4fd6c5 kbuild: Don't res... |
16 17 18 |
# Use filechk to avoid rebuilds when a header changes, but the resulting file # does not define filechk_offsets |
1cdf25d70 kbuild: create a ... |
19 |
(set -e; \ |
39664e2f3 kbuild: merge bou... |
20 21 |
echo "#ifndef $2"; \ echo "#define $2"; \ |
1cdf25d70 kbuild: create a ... |
22 23 24 25 |
echo "/*"; \ echo " * DO NOT MODIFY."; \ echo " *"; \ echo " * This file was generated by Kbuild"; \ |
1cdf25d70 kbuild: create a ... |
26 27 |
echo " */"; \ echo ""; \ |
70a4fd6c5 kbuild: Don't res... |
28 |
sed -ne $(sed-y); \ |
1cdf25d70 kbuild: create a ... |
29 |
echo ""; \ |
70a4fd6c5 kbuild: Don't res... |
30 |
echo "#endif" ) |
1cdf25d70 kbuild: create a ... |
31 |
endef |
39664e2f3 kbuild: merge bou... |
32 33 34 35 36 37 |
##### # 1) Generate bounds.h bounds-file := include/generated/bounds.h always := $(bounds-file) |
8a58e1628 kbuild: do not ad... |
38 |
targets := kernel/bounds.s |
39664e2f3 kbuild: merge bou... |
39 |
|
1cdf25d70 kbuild: create a ... |
40 41 42 43 |
# We use internal kbuild rules to avoid the "is up to date" message from make kernel/bounds.s: kernel/bounds.c FORCE $(Q)mkdir -p $(dir $@) $(call if_changed_dep,cc_s_c) |
70a4fd6c5 kbuild: Don't res... |
44 45 |
$(obj)/$(bounds-file): kernel/bounds.s FORCE $(call filechk,offsets,__LINUX_BOUNDS_H__) |
1cdf25d70 kbuild: create a ... |
46 47 48 |
##### # 2) Generate asm-offsets.h |
86feeaa81 kbuild: full depe... |
49 |
# |
559df2e02 kbuild: move asm-... |
50 |
offsets-file := include/generated/asm-offsets.h |
86feeaa81 kbuild: full depe... |
51 |
|
1cdf25d70 kbuild: create a ... |
52 |
always += $(offsets-file) |
6752ed90d Kbuild: allow arc... |
53 |
targets += arch/$(SRCARCH)/kernel/asm-offsets.s |
1cdf25d70 kbuild: create a ... |
54 |
|
86feeaa81 kbuild: full depe... |
55 |
# We use internal kbuild rules to avoid the "is up to date" message from make |
1cdf25d70 kbuild: create a ... |
56 57 |
arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \ $(obj)/$(bounds-file) FORCE |
86feeaa81 kbuild: full depe... |
58 59 |
$(Q)mkdir -p $(dir $@) $(call if_changed_dep,cc_s_c) |
70a4fd6c5 kbuild: Don't res... |
60 61 |
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE $(call filechk,offsets,__ASM_OFFSETS_H__) |
86feeaa81 kbuild: full depe... |
62 |
|
c53aeca05 kbuild: complain ... |
63 |
##### |
1cdf25d70 kbuild: create a ... |
64 |
# 3) Check for missing system calls |
c53aeca05 kbuild: complain ... |
65 |
# |
5f7efb4c6 Kbuild: append mi... |
66 67 |
always += missing-syscalls targets += missing-syscalls |
c53aeca05 kbuild: complain ... |
68 |
quiet_cmd_syscalls = CALL $< |
44656fa03 kbuild: Fix missi... |
69 |
cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags) |
c53aeca05 kbuild: complain ... |
70 |
|
5f7efb4c6 Kbuild: append mi... |
71 |
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE |
c53aeca05 kbuild: complain ... |
72 |
$(call cmd,syscalls) |
1cdf25d70 kbuild: create a ... |
73 |
|
ef8ff89b5 kbuild: Really do... |
74 75 |
# Keep these two files during make clean no-clean-files := $(bounds-file) $(offsets-file) |