diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-09-24 17:16:03 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-09-24 17:16:03 -0400 |
commit | 6d71627581e96efb3717960b79fc2167a4617977 (patch) | |
tree | c9953caf9adef637b54e0ce1632ebd5746e630d6 /Makefile | |
parent | de78912582bc1f95733d53e0d40779c0cd7b0686 (diff) |
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 <dwmw2@infradead.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -892,6 +892,15 @@ depend dep: | |||
892 | INSTALL_HDR_PATH=$(objtree)/usr | 892 | INSTALL_HDR_PATH=$(objtree)/usr |
893 | export INSTALL_HDR_PATH | 893 | export INSTALL_HDR_PATH |
894 | 894 | ||
895 | HDRARCHES=$(filter-out generic,$(patsubst $(srctree)/include/asm-%/Kbuild,%,$(wildcard $(srctree)/include/asm-*/Kbuild))) | ||
896 | |||
897 | PHONY += headers_install_all | ||
898 | headers_install_all: include/linux/version.h | ||
899 | $(Q)unifdef -Ux /dev/null | ||
900 | $(Q)for arch in $(HDRARCHES); do \ | ||
901 | $(MAKE) ARCH=$$arch -rR -f $(srctree)/scripts/Makefile.headersinst obj=include BIASMDIR=-bi-$$arch ;\ | ||
902 | done | ||
903 | |||
895 | PHONY += headers_install | 904 | PHONY += headers_install |
896 | headers_install: include/linux/version.h | 905 | headers_install: include/linux/version.h |
897 | @if [ ! -r include/asm-$(ARCH)/Kbuild ]; then \ | 906 | @if [ ! -r include/asm-$(ARCH)/Kbuild ]; then \ |