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 32
	 echo "/*"; \
	 echo " * DO NOT MODIFY."; \
	 echo " *"; \
	 echo " * This file was generated by Kbuild"; \
	 echo " *"; \
	 echo " */"; \
	 echo ""; \
	 sed -ne $(sed-y) $<; \
	 echo ""; \
	 echo "#endif" ) > $@
endef

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

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

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

41 42 43 44 45 46 47
# 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 $@)
48
	$(call cmd,offsets,__LINUX_BOUNDS_H__)
49 50 51

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

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

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

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

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

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

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

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

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

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