From: David Woodhouse Date: Sun, 24 Sep 2006 21:16:03 +0000 (+0100) Subject: New 'make headers_install_all' target. X-Git-Tag: v2.6.19-rc1~1260^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d71627581e96efb3717960b79fc2167a4617977;p=platform%2Fkernel%2Flinux-exynos.git New 'make headers_install_all' target. Install headers for _all_ architectures, suitable for making a tarball release or extracting them for use in a separate package. Signed-off-by: David Woodhouse --- diff --git a/Makefile b/Makefile index 13448d7..b78c88d 100644 --- a/Makefile +++ b/Makefile @@ -892,6 +892,15 @@ depend dep: INSTALL_HDR_PATH=$(objtree)/usr export INSTALL_HDR_PATH +HDRARCHES=$(filter-out generic,$(patsubst $(srctree)/include/asm-%/Kbuild,%,$(wildcard $(srctree)/include/asm-*/Kbuild))) + +PHONY += headers_install_all +headers_install_all: include/linux/version.h + $(Q)unifdef -Ux /dev/null + $(Q)for arch in $(HDRARCHES); do \ + $(MAKE) ARCH=$$arch -rR -f $(srctree)/scripts/Makefile.headersinst obj=include BIASMDIR=-bi-$$arch ;\ + done + PHONY += headers_install headers_install: include/linux/version.h @if [ ! -r include/asm-$(ARCH)/Kbuild ]; then \