2 # Kbuild for top-level directory of the kernel
3 # This file takes care of the following:
4 # 1) Generate asm-offsets.h
7 # 1) Generate asm-offsets.h
10 offsets-file := include/asm-$(ARCH)/asm-offsets.h
12 always := $(offsets-file)
13 targets := $(offsets-file)
14 targets += arch/$(ARCH)/kernel/asm-offsets.s
16 # Default sed regexp - multiline due to syntax constraints
18 "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"
20 # Override default regexp for specific architectures
21 sed-$(CONFIG_MIPS) := "/^@@@/{s/^@@@//; s/ \#.*\$$//; p;}"
23 quiet_cmd_offsets = GEN $@
26 echo "#ifndef __ASM_OFFSETS_H__"; \
27 echo "#define __ASM_OFFSETS_H__"; \
29 echo " * DO NOT MODIFY."; \
31 echo " * This file was generated by $(srctree)/Kbuild"; \
35 sed -ne $(sed-y) $<; \
40 # We use internal kbuild rules to avoid the "is up to date" message from make
41 arch/$(ARCH)/kernel/asm-offsets.s: arch/$(ARCH)/kernel/asm-offsets.c FORCE
42 $(Q)mkdir -p $(dir $@)
43 $(call if_changed_dep,cc_s_c)
45 $(obj)/$(offsets-file): arch/$(ARCH)/kernel/asm-offsets.s Kbuild
46 $(Q)mkdir -p $(dir $@)