Makefile.headersinst 4.4 KB
Newer Older
1 2 3
# ==========================================================================
# Installing headers
#
4
# All headers under include/uapi, include/generated/uapi,
5
# arch/<arch>/include/uapi and arch/<arch>/include/generated/uapi are
6 7
# exported.
# They are preprocessed to remove __KERNEL__ section of the file.
8 9 10
#
# ==========================================================================

11 12 13
# generated header directory
gen := $(if $(gen),$(gen),$(subst include/,include/generated/,$(obj)))

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 22 23 24
old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild
ifneq ($(wildcard $(old-kbuild-file)),)
include $(old-kbuild-file)
endif
25

26
include scripts/Kbuild.include
27

28
installdir    := $(INSTALL_HDR_PATH)/$(subst uapi/,,$(_dst))
29

30 31 32 33 34 35 36 37
srcdir        := $(srctree)/$(obj)
gendir        := $(objtree)/$(gen)
subdirs       := $(patsubst $(srcdir)/%/.,%,$(wildcard $(srcdir)/*/.))
header-files  := $(notdir $(wildcard $(srcdir)/*.h))
header-files  += $(notdir $(wildcard $(srcdir)/*.agh))
header-files  := $(filter-out $(no-export-headers), $(header-files))
genhdr-files  := $(notdir $(wildcard $(gendir)/*.h))
genhdr-files  := $(filter-out $(header-files), $(genhdr-files))
38

39
# files used to track state of install/check
40 41
install-file  := $(installdir)/.install
check-file    := $(installdir)/.check
42

S
Sam Ravnborg 已提交
43 44
# generic-y list all files an architecture uses from asm-generic
# Use this to build a list of headers which require a wrapper
45 46 47
generic-files := $(notdir $(wildcard $(srctree)/include/uapi/asm-generic/*.h))
wrapper-files := $(filter $(generic-files), $(generic-y))
wrapper-files := $(filter-out $(header-files), $(wrapper-files))
48

49
# all headers files for this dir
50
all-files     := $(header-files) $(genhdr-files) $(wrapper-files)
51 52
output-files  := $(addprefix $(installdir)/, $(all-files))

53 54 55 56 57 58
ifneq ($(mandatory-y),)
missing       := $(filter-out $(all-files),$(mandatory-y))
ifneq ($(missing),)
$(error Some mandatory headers ($(missing)) are missing in $(obj))
endif
endif
59

60
# Work out what needs to be removed
61
oldheaders    := $(patsubst $(installdir)/%,%,$(wildcard $(installdir)/*.h))
62
unwanted      := $(filter-out $(all-files),$(oldheaders))
63

64
# Prefix unwanted with full paths to $(INSTALL_HDR_PATH)
65
unwanted-file := $(addprefix $(installdir)/, $(unwanted))
66

67
printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@))
68

69 70
quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\
                            file$(if $(word 2, $(all-files)),s))
71
      cmd_install = \
72 73
        $(CONFIG_SHELL) $< $(installdir) $(srcdir) $(header-files); \
        $(CONFIG_SHELL) $< $(installdir) $(gendir) $(genhdr-files); \
S
Sam Ravnborg 已提交
74
        for F in $(wrapper-files); do                                   \
75
                echo "\#include <asm-generic/$$F>" > $(installdir)/$$F;    \
S
Sam Ravnborg 已提交
76
        done;                                                           \
77
        touch $@
78

79 80
quiet_cmd_remove = REMOVE  $(unwanted)
      cmd_remove = rm -f $(unwanted-file)
81

82
quiet_cmd_check = CHECK   $(printdir) ($(words $(all-files)) files)
83 84 85
# Headers list can be pretty long, xargs helps to avoid
# the "Argument list too long" error.
      cmd_check = for f in $(all-files); do                          \
86
                  echo "$(installdir)/$${f}"; done                      \
87 88
                  | xargs                                            \
                  $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \
89
	          touch $@
90

91
PHONY += __headersinst __headerscheck
92

93 94 95 96
ifndef HDRCHECK
# Rules for installing headers
__headersinst: $(subdirs) $(install-file)
	@:
97

98
targets += $(install-file)
99
$(install-file): scripts/headers_install.sh \
100 101
		 $(addprefix $(srcdir)/,$(header-files)) \
		 $(addprefix $(gendir)/,$(genhdr-files)) FORCE
102 103 104
	$(if $(unwanted),$(call cmd,remove),)
	$(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@)))
	$(call if_changed,install)
105

106
else
107 108
__headerscheck: $(subdirs) $(check-file)
	@:
109

110 111 112
targets += $(check-file)
$(check-file): scripts/headers_check.pl $(output-files) FORCE
	$(call if_changed,check)
113

114
endif
115

116 117 118 119
# Recursion
.PHONY: $(subdirs)
$(subdirs):
	$(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@
120

121 122 123
targets := $(wildcard $(sort $(targets)))
cmd_files := $(wildcard \
             $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd))
124

125 126
ifneq ($(cmd_files),)
	include $(cmd_files)
127 128
endif

129 130 131
.PHONY: $(PHONY)
PHONY += FORCE
FORCE: ;