Kbuild 2.1 KB
Newer Older
1 2 3
#
# Kbuild for top-level directory of the kernel
# This file takes care of the following:
4 5 6
# 1) Generate bounds.h
# 2) Generate asm-offsets.h (may need bounds.h)
# 3) Check for missing system calls
7

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
15

16 17 18
# Use filechk to avoid rebuilds when a header changes, but the resulting file
# does not
define filechk_offsets
19
	(set -e; \
20 21
	 echo "#ifndef $2"; \
	 echo "#define $2"; \
22 23 24 25 26 27
	 echo "/*"; \
	 echo " * DO NOT MODIFY."; \
	 echo " *"; \
	 echo " * This file was generated by Kbuild"; \
	 echo " */"; \
	 echo ""; \
28
	 sed -ne $(sed-y); \
29
	 echo ""; \
30
	 echo "#endif" )
31 32
endef

33 34 35 36 37 38
#####
# 1) Generate bounds.h

bounds-file := include/generated/bounds.h

always  := $(bounds-file)
39
targets := kernel/bounds.s
40

41 42 43 44 45
# 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)

46 47
$(obj)/$(bounds-file): kernel/bounds.s FORCE
	$(call filechk,offsets,__LINUX_BOUNDS_H__)
48 49 50

#####
# 2) Generate asm-offsets.h
51 52
#

53
offsets-file := include/generated/asm-offsets.h
54

55
always  += $(offsets-file)
56
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
57

58
# We use internal kbuild rules to avoid the "is up to date" message from make
59 60
arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \
                                      $(obj)/$(bounds-file) FORCE
61 62 63
	$(Q)mkdir -p $(dir $@)
	$(call if_changed_dep,cc_s_c)

64 65
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
	$(call filechk,offsets,__ASM_OFFSETS_H__)
66

67
#####
68
# 3) Check for missing system calls
69 70
#

71 72 73
always += missing-syscalls
targets += missing-syscalls

74
quiet_cmd_syscalls = CALL    $<
75
      cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
76

77
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
78
	$(call cmd,syscalls)
79

80 81
# Keep these two files during make clean
no-clean-files := $(bounds-file) $(offsets-file)