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