]> git.ipfire.org Git - thirdparty/linux.git/blame - scripts/Makefile.headersinst
kbuild: fix comment about dst of headers_{install, check}_all
[thirdparty/linux.git] / scripts / Makefile.headersinst
CommitLineData
8d730cfb
DW
1# ==========================================================================
2# Installing headers
3#
fcc8487d 4# All headers under include/uapi, include/generated/uapi,
61562f98 5# arch/<arch>/include/uapi and arch/<arch>/include/generated/uapi are
fcc8487d
ND
6# exported.
7# They are preprocessed to remove __KERNEL__ section of the file.
8d730cfb
DW
8#
9# ==========================================================================
10
05d8cba4
MY
11PHONY := __headers
12__headers:
13
14include scripts/Kbuild.include
15
16srcdir := $(srctree)/$(obj)
2f263d14
RG
17
18# When make is run under a fakechroot environment, the function
19# $(wildcard $(srcdir)/*/.) doesn't only return directories, but also regular
20# files. So, we are using a combination of sort/dir/wildcard which works
21# with fakechroot.
22subdirs := $(patsubst $(srcdir)/%/,%,\
23 $(filter-out $(srcdir)/,\
24 $(sort $(dir $(wildcard $(srcdir)/*/)))))
25
05d8cba4
MY
26# caller may set destination dir (when installing to asm/)
27_dst := $(if $(dst),$(dst),$(obj))
28
29# Recursion
30__headers: $(subdirs)
31
32.PHONY: $(subdirs)
33$(subdirs):
34 $(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@
35
36# Skip header install/check for include/uapi and arch/$(hdr-arch)/include/uapi.
37# We have only sub-directories there.
38skip-inst := $(if $(filter %/uapi,$(obj)),1)
39
40ifeq ($(skip-inst),)
41
fcc8487d 42# Kbuild file is optional
283039fb 43kbuild-file := $(srctree)/$(obj)/Kbuild
fcc8487d 44-include $(kbuild-file)
8d730cfb 45
10b63956
DH
46old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild
47ifneq ($(wildcard $(old-kbuild-file)),)
48include $(old-kbuild-file)
49endif
c7bb349e 50
10b63956 51installdir := $(INSTALL_HDR_PATH)/$(subst uapi/,,$(_dst))
8d730cfb 52
87ebb94e 53gendir := $(objtree)/$(subst include/,include/generated/,$(obj))
fcc8487d
ND
54header-files := $(notdir $(wildcard $(srcdir)/*.h))
55header-files += $(notdir $(wildcard $(srcdir)/*.agh))
56header-files := $(filter-out $(no-export-headers), $(header-files))
57genhdr-files := $(notdir $(wildcard $(gendir)/*.h))
58genhdr-files := $(filter-out $(header-files), $(genhdr-files))
de789125 59
7712401a 60# files used to track state of install/check
10b63956
DH
61install-file := $(installdir)/.install
62check-file := $(installdir)/.check
de789125 63
d8ecc5cd
SR
64# generic-y list all files an architecture uses from asm-generic
65# Use this to build a list of headers which require a wrapper
fcc8487d
ND
66generic-files := $(notdir $(wildcard $(srctree)/include/uapi/asm-generic/*.h))
67wrapper-files := $(filter $(generic-files), $(generic-y))
68wrapper-files := $(filter-out $(header-files), $(wrapper-files))
10b63956 69
7712401a 70# all headers files for this dir
fcc8487d 71all-files := $(header-files) $(genhdr-files) $(wrapper-files)
10b63956
DH
72output-files := $(addprefix $(installdir)/, $(all-files))
73
fcc8487d
ND
74ifneq ($(mandatory-y),)
75missing := $(filter-out $(all-files),$(mandatory-y))
76ifneq ($(missing),)
77$(error Some mandatory headers ($(missing)) are missing in $(obj))
78endif
79endif
de789125 80
7712401a 81# Work out what needs to be removed
10b63956 82oldheaders := $(patsubst $(installdir)/%,%,$(wildcard $(installdir)/*.h))
7712401a 83unwanted := $(filter-out $(all-files),$(oldheaders))
8d730cfb 84
7712401a 85# Prefix unwanted with full paths to $(INSTALL_HDR_PATH)
10b63956 86unwanted-file := $(addprefix $(installdir)/, $(unwanted))
de789125 87
7712401a 88printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@))
68475359 89
7712401a
SR
90quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\
91 file$(if $(word 2, $(all-files)),s))
db1bec4f 92 cmd_install = \
fcc8487d
ND
93 $(CONFIG_SHELL) $< $(installdir) $(srcdir) $(header-files); \
94 $(CONFIG_SHELL) $< $(installdir) $(gendir) $(genhdr-files); \
d8ecc5cd 95 for F in $(wrapper-files); do \
10b63956 96 echo "\#include <asm-generic/$$F>" > $(installdir)/$$F; \
d8ecc5cd 97 done; \
db1bec4f 98 touch $@
8d730cfb 99
7712401a
SR
100quiet_cmd_remove = REMOVE $(unwanted)
101 cmd_remove = rm -f $(unwanted-file)
8d730cfb 102
7712401a 103quiet_cmd_check = CHECK $(printdir) ($(words $(all-files)) files)
7211b8b9
SP
104# Headers list can be pretty long, xargs helps to avoid
105# the "Argument list too long" error.
106 cmd_check = for f in $(all-files); do \
10b63956 107 echo "$(installdir)/$${f}"; done \
7211b8b9
SP
108 | xargs \
109 $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \
7712401a 110 touch $@
de789125 111
7712401a
SR
112ifndef HDRCHECK
113# Rules for installing headers
05d8cba4 114__headers: $(install-file)
7712401a 115 @:
de789125 116
7712401a 117targets += $(install-file)
7c025b2a 118$(install-file): scripts/headers_install.sh \
fcc8487d
ND
119 $(addprefix $(srcdir)/,$(header-files)) \
120 $(addprefix $(gendir)/,$(genhdr-files)) FORCE
7712401a
SR
121 $(if $(unwanted),$(call cmd,remove),)
122 $(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@)))
123 $(call if_changed,install)
de789125 124
68475359 125else
05d8cba4 126__headers: $(check-file)
7712401a 127 @:
8d730cfb 128
7712401a
SR
129targets += $(check-file)
130$(check-file): scripts/headers_check.pl $(output-files) FORCE
131 $(call if_changed,check)
8d730cfb 132
7712401a 133endif
de789125 134
7712401a
SR
135targets := $(wildcard $(sort $(targets)))
136cmd_files := $(wildcard \
137 $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
4e420aa9 138
7712401a
SR
139ifneq ($(cmd_files),)
140 include $(cmd_files)
8d730cfb
DW
141endif
142
05d8cba4
MY
143endif # skip-inst
144
7712401a
SR
145.PHONY: $(PHONY)
146PHONY += FORCE
147FORCE: ;