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
quiet_cmd_offsets = GEN     $@
define cmd_offsets
18
	(set -e; \
19 20
	 echo "#ifndef $2"; \
	 echo "#define $2"; \
21 22 23 24 25 26 27 28 29 30 31
	 echo "/*"; \
	 echo " * DO NOT MODIFY."; \
	 echo " *"; \
	 echo " * This file was generated by Kbuild"; \
	 echo " */"; \
	 echo ""; \
	 sed -ne $(sed-y) $<; \
	 echo ""; \
	 echo "#endif" ) > $@
endef

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

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

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

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

$(obj)/$(bounds-file): kernel/bounds.s Kbuild
	$(Q)mkdir -p $(dir $@)
47
	$(call cmd,offsets,__LINUX_BOUNDS_H__)
48 49 50

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

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

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

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

65
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild
66
	$(call cmd,offsets,__ASM_OFFSETS_H__)
67

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

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

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

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

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