]>
Commit | Line | Data |
---|---|---|
8d730cfb DW |
1 | # ========================================================================== |
2 | # Installing headers | |
3 | # | |
7712401a SR |
4 | # header-y - list files to be installed. They are preprocessed |
5 | # to remove __KERNEL__ section of the file | |
40f1d4c2 | 6 | # genhdr-y - Same as header-y but in a generated/ directory |
8d730cfb DW |
7 | # |
8 | # ========================================================================== | |
9 | ||
cb97914b PA |
10 | # generated header directory |
11 | gen := $(if $(gen),$(gen),$(subst include/,include/generated/,$(obj))) | |
12 | ||
283039fb SR |
13 | kbuild-file := $(srctree)/$(obj)/Kbuild |
14 | include $(kbuild-file) | |
8d730cfb | 15 | |
9b58b928 | 16 | # called may set destination dir (when installing to asm/) |
c4619bc6 | 17 | _dst := $(if $(destination-y),$(destination-y),$(if $(dst),$(dst),$(obj))) |
9b58b928 | 18 | |
10b63956 DH |
19 | old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild |
20 | ifneq ($(wildcard $(old-kbuild-file)),) | |
21 | include $(old-kbuild-file) | |
22 | endif | |
c7bb349e | 23 | |
283039fb | 24 | include scripts/Kbuild.include |
de789125 | 25 | |
10b63956 | 26 | installdir := $(INSTALL_HDR_PATH)/$(subst uapi/,,$(_dst)) |
8d730cfb | 27 | |
7cfddeef | 28 | header-y := $(sort $(header-y)) |
7712401a SR |
29 | subdirs := $(patsubst %/,%,$(filter %/, $(header-y))) |
30 | header-y := $(filter-out %/, $(header-y)) | |
de789125 | 31 | |
7712401a | 32 | # files used to track state of install/check |
10b63956 DH |
33 | install-file := $(installdir)/.install |
34 | check-file := $(installdir)/.check | |
de789125 | 35 | |
d8ecc5cd SR |
36 | # generic-y list all files an architecture uses from asm-generic |
37 | # Use this to build a list of headers which require a wrapper | |
38 | wrapper-files := $(filter $(header-y), $(generic-y)) | |
39 | ||
10b63956 DH |
40 | srcdir := $(srctree)/$(obj) |
41 | gendir := $(objtree)/$(gen) | |
42 | ||
43 | oldsrcdir := $(srctree)/$(subst /uapi,,$(obj)) | |
44 | ||
7712401a | 45 | # all headers files for this dir |
d8ecc5cd | 46 | header-y := $(filter-out $(generic-y), $(header-y)) |
40f1d4c2 | 47 | all-files := $(header-y) $(genhdr-y) $(wrapper-files) |
10b63956 DH |
48 | output-files := $(addprefix $(installdir)/, $(all-files)) |
49 | ||
c0ff68f1 | 50 | input-files1 := $(foreach hdr, $(header-y), \ |
c4619bc6 | 51 | $(if $(wildcard $(srcdir)/$(hdr)), \ |
c0ff68f1 ND |
52 | $(wildcard $(srcdir)/$(hdr))) \ |
53 | ) | |
54 | input-files1-name := $(notdir $(input-files1)) | |
55 | input-files2 := $(foreach hdr, $(header-y), \ | |
56 | $(if $(wildcard $(srcdir)/$(hdr)),, \ | |
c4619bc6 SR |
57 | $(if $(wildcard $(oldsrcdir)/$(hdr)), \ |
58 | $(wildcard $(oldsrcdir)/$(hdr)), \ | |
59 | $(error Missing UAPI file $(srcdir)/$(hdr))) \ | |
c0ff68f1 ND |
60 | )) |
61 | input-files2-name := $(notdir $(input-files2)) | |
62 | input-files3 := $(foreach hdr, $(genhdr-y), \ | |
c4619bc6 | 63 | $(if $(wildcard $(gendir)/$(hdr)), \ |
10b63956 DH |
64 | $(wildcard $(gendir)/$(hdr)), \ |
65 | $(error Missing generated UAPI file $(gendir)/$(hdr)) \ | |
66 | )) | |
c0ff68f1 | 67 | input-files3-name := $(notdir $(input-files3)) |
de789125 | 68 | |
7712401a | 69 | # Work out what needs to be removed |
10b63956 | 70 | oldheaders := $(patsubst $(installdir)/%,%,$(wildcard $(installdir)/*.h)) |
7712401a | 71 | unwanted := $(filter-out $(all-files),$(oldheaders)) |
8d730cfb | 72 | |
7712401a | 73 | # Prefix unwanted with full paths to $(INSTALL_HDR_PATH) |
10b63956 | 74 | unwanted-file := $(addprefix $(installdir)/, $(unwanted)) |
de789125 | 75 | |
7712401a | 76 | printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) |
68475359 | 77 | |
7712401a SR |
78 | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ |
79 | file$(if $(word 2, $(all-files)),s)) | |
db1bec4f | 80 | cmd_install = \ |
c0ff68f1 ND |
81 | $(CONFIG_SHELL) $< $(installdir) $(srcdir) $(input-files1-name); \ |
82 | $(CONFIG_SHELL) $< $(installdir) $(oldsrcdir) $(input-files2-name); \ | |
83 | $(CONFIG_SHELL) $< $(installdir) $(gendir) $(input-files3-name); \ | |
d8ecc5cd | 84 | for F in $(wrapper-files); do \ |
10b63956 | 85 | echo "\#include <asm-generic/$$F>" > $(installdir)/$$F; \ |
d8ecc5cd | 86 | done; \ |
db1bec4f | 87 | touch $@ |
8d730cfb | 88 | |
7712401a SR |
89 | quiet_cmd_remove = REMOVE $(unwanted) |
90 | cmd_remove = rm -f $(unwanted-file) | |
8d730cfb | 91 | |
7712401a | 92 | quiet_cmd_check = CHECK $(printdir) ($(words $(all-files)) files) |
7211b8b9 SP |
93 | # Headers list can be pretty long, xargs helps to avoid |
94 | # the "Argument list too long" error. | |
95 | cmd_check = for f in $(all-files); do \ | |
10b63956 | 96 | echo "$(installdir)/$${f}"; done \ |
7211b8b9 SP |
97 | | xargs \ |
98 | $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \ | |
7712401a | 99 | touch $@ |
de789125 | 100 | |
7712401a | 101 | PHONY += __headersinst __headerscheck |
de789125 | 102 | |
7712401a SR |
103 | ifndef HDRCHECK |
104 | # Rules for installing headers | |
105 | __headersinst: $(subdirs) $(install-file) | |
106 | @: | |
de789125 | 107 | |
7712401a | 108 | targets += $(install-file) |
c0ff68f1 | 109 | $(install-file): scripts/headers_install.sh $(input-files1) $(input-files2) $(input-files3) FORCE |
7712401a SR |
110 | $(if $(unwanted),$(call cmd,remove),) |
111 | $(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@))) | |
112 | $(call if_changed,install) | |
de789125 | 113 | |
68475359 | 114 | else |
7712401a SR |
115 | __headerscheck: $(subdirs) $(check-file) |
116 | @: | |
8d730cfb | 117 | |
7712401a SR |
118 | targets += $(check-file) |
119 | $(check-file): scripts/headers_check.pl $(output-files) FORCE | |
120 | $(call if_changed,check) | |
8d730cfb | 121 | |
7712401a | 122 | endif |
de789125 | 123 | |
7712401a | 124 | # Recursion |
7712401a SR |
125 | .PHONY: $(subdirs) |
126 | $(subdirs): | |
127 | $(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@ | |
8d730cfb | 128 | |
7712401a SR |
129 | targets := $(wildcard $(sort $(targets))) |
130 | cmd_files := $(wildcard \ | |
131 | $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) | |
4e420aa9 | 132 | |
7712401a SR |
133 | ifneq ($(cmd_files),) |
134 | include $(cmd_files) | |
8d730cfb DW |
135 | endif |
136 | ||
7712401a SR |
137 | .PHONY: $(PHONY) |
138 | PHONY += FORCE | |
139 | FORCE: ; |