diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-10-11 04:21:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:14:21 -0400 |
commit | 0f836e5fecf59d0d0353e9af11fd14a32a3001ae (patch) | |
tree | b5ac08451e0a7e0aa1f4c8782fed88cf2f909811 /Makefile | |
parent | c21be1c9c1ab42fe285a74f184e1acbc37ee084b (diff) |
[PATCH] Add CONFIG_HEADERS_CHECK option to automatically run 'make headers_check'
In order to encourage people to notice when they break the exported
headers, add a config option which automatically runs the sanity checks
when building vmlinux. That way, those who use allyesconfig will notice
failures.
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -741,6 +741,9 @@ endif # ifdef CONFIG_KALLSYMS | |||
741 | 741 | ||
742 | # vmlinux image - including updated kernel symbols | 742 | # vmlinux image - including updated kernel symbols |
743 | vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE | 743 | vmlinux: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) $(kallsyms.o) FORCE |
744 | ifdef CONFIG_HEADERS_CHECK | ||
745 | $(Q)$(MAKE) headers_check | ||
746 | endif | ||
744 | $(call if_changed_rule,vmlinux__) | 747 | $(call if_changed_rule,vmlinux__) |
745 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ | 748 | $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.modpost $@ |
746 | $(Q)rm -f .old_version | 749 | $(Q)rm -f .old_version |