]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - Kbuild
kbuild: add objectify
[mirror_ubuntu-artful-kernel.git] / Kbuild
CommitLineData
86feeaa8
SR
1#
2# Kbuild for top-level directory of the kernel
3# This file takes care of the following:
4# 1) Generate asm-offsets.h
5
6#####
7# 1) Generate asm-offsets.h
8#
9
10offsets-file := include/asm-$(ARCH)/asm-offsets.h
11
12always := $(offsets-file)
13targets := $(offsets-file)
14targets += arch/$(ARCH)/kernel/asm-offsets.s
15
048eb582
SR
16# Default sed regexp - multiline due to syntax constraints
17define sed-y
18 "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"
19endef
20# Override default regexp for specific architectures
21sed-$(CONFIG_MIPS) := "/^@@@/s///p"
22
86feeaa8
SR
23quiet_cmd_offsets = GEN $@
24define cmd_offsets
25 cat $< | \
26 (set -e; \
27 echo "#ifndef __ASM_OFFSETS_H__"; \
28 echo "#define __ASM_OFFSETS_H__"; \
29 echo "/*"; \
30 echo " * DO NOT MODIFY."; \
31 echo " *"; \
32 echo " * This file was generated by $(srctree)/Kbuild"; \
33 echo " *"; \
34 echo " */"; \
35 echo ""; \
048eb582 36 sed -ne $(sed-y); \
86feeaa8
SR
37 echo ""; \
38 echo "#endif" ) > $@
39endef
40
41# We use internal kbuild rules to avoid the "is up to date" message from make
42arch/$(ARCH)/kernel/asm-offsets.s: arch/$(ARCH)/kernel/asm-offsets.c FORCE
43 $(Q)mkdir -p $(dir $@)
44 $(call if_changed_dep,cc_s_c)
45
46$(srctree)/$(offsets-file): arch/$(ARCH)/kernel/asm-offsets.s Kbuild
47 $(call cmd,offsets)
48