diff options
author | Mike Frysinger | 2007-02-14 09:33:02 +0100 |
---|---|---|
committer | Linus Torvalds | 2007-02-14 17:09:52 +0100 |
commit | 1f85712e6e1f2450ec4fd2ab18f8887bf7280f8e (patch) | |
tree | 7bb62cb8cacfd4c8df87063052bf7f9691598aae /Makefile | |
parent | [PATCH] Kbuild: Remove references to deprecated "prepare-all" target from Mak... (diff) | |
download | kernel-qcow2-linux-1f85712e6e1f2450ec4fd2ab18f8887bf7280f8e.tar.gz kernel-qcow2-linux-1f85712e6e1f2450ec4fd2ab18f8887bf7280f8e.tar.xz kernel-qcow2-linux-1f85712e6e1f2450ec4fd2ab18f8887bf7280f8e.zip |
[PATCH] new toplevel target: headers_check_all
Add new headers_check_all target for checking all arches in one go.
Useful for distros (and people with too much time on their hands) that support
a ton of architectures, headers_check_all is to headers_check as
headers_install_all is to headers_install
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -928,6 +928,12 @@ headers_install: include/linux/version.h scripts_basic FORCE $(Q)$(MAKE) $(build)=scripts scripts/unifdef $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.headersinst obj=include +PHONY += headers_check_all +headers_check_all: headers_install_all + $(Q)for arch in $(HDRARCHES); do \ + $(MAKE) ARCH=$$arch -f $(srctree)/scripts/Makefile.headersinst obj=include BIASMDIR=-bi-$$arch HDRCHECK=1 ;\ + done + PHONY += headers_check headers_check: headers_install $(Q)$(MAKE) -f $(srctree)/scripts/Makefile.headersinst obj=include HDRCHECK=1 |