| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | # ========================================================================== | 
					
						
							|  |  |  | # Installing headers | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # header-y  - list files to be installed. They are preprocessed | 
					
						
							|  |  |  | #             to remove __KERNEL__ section of the file | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:56 +01:00
										 |  |  | # genhdr-y  - Same as header-y but in a generated/ directory | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | # | 
					
						
							|  |  |  | # ========================================================================== | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 15:20:34 -08:00
										 |  |  | # generated header directory | 
					
						
							|  |  |  | gen := $(if $(gen),$(gen),$(subst include/,include/generated/,$(obj))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-05 19:19:47 +02:00
										 |  |  | kbuild-file := $(srctree)/$(obj)/Kbuild | 
					
						
							|  |  |  | include $(kbuild-file) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 11:18:35 +01:00
										 |  |  | # called may set destination dir (when installing to asm/) | 
					
						
							| 
									
										
										
										
											2013-03-04 21:36:24 +01:00
										 |  |  | _dst := $(if $(destination-y),$(destination-y),$(if $(dst),$(dst),$(obj))) | 
					
						
							| 
									
										
										
										
											2013-02-02 11:18:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | old-kbuild-file := $(srctree)/$(subst uapi/,,$(obj))/Kbuild | 
					
						
							|  |  |  | ifneq ($(wildcard $(old-kbuild-file)),) | 
					
						
							|  |  |  | include $(old-kbuild-file) | 
					
						
							|  |  |  | endif | 
					
						
							| 
									
										
										
										
											2009-04-10 08:52:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-05 19:19:47 +02:00
										 |  |  | include scripts/Kbuild.include | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | installdir    := $(INSTALL_HDR_PATH)/$(subst uapi/,,$(_dst)) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-14 10:22:58 +02:00
										 |  |  | header-y      := $(sort $(header-y)) | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | subdirs       := $(patsubst %/,%,$(filter %/, $(header-y))) | 
					
						
							|  |  |  | header-y      := $(filter-out %/, $(header-y)) | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # files used to track state of install/check | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | install-file  := $(installdir)/.install | 
					
						
							|  |  |  | check-file    := $(installdir)/.check | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-27 22:29:49 +02:00
										 |  |  | # generic-y list all files an architecture uses from asm-generic | 
					
						
							|  |  |  | # Use this to build a list of headers which require a wrapper | 
					
						
							|  |  |  | wrapper-files := $(filter $(header-y), $(generic-y)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | srcdir        := $(srctree)/$(obj) | 
					
						
							|  |  |  | gendir        := $(objtree)/$(gen) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | oldsrcdir     := $(srctree)/$(subst /uapi,,$(obj)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # all headers files for this dir | 
					
						
							| 
									
										
										
										
											2011-04-27 22:29:49 +02:00
										 |  |  | header-y      := $(filter-out $(generic-y), $(header-y)) | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:56 +01:00
										 |  |  | all-files     := $(header-y) $(genhdr-y) $(wrapper-files) | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | output-files  := $(addprefix $(installdir)/, $(all-files)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  | input-files1  := $(foreach hdr, $(header-y), \ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:36:24 +01:00
										 |  |  | 		   $(if $(wildcard $(srcdir)/$(hdr)), \ | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  | 			$(wildcard $(srcdir)/$(hdr))) \ | 
					
						
							|  |  |  | 		   ) | 
					
						
							|  |  |  | input-files1-name := $(notdir $(input-files1)) | 
					
						
							|  |  |  | input-files2  := $(foreach hdr, $(header-y), \ | 
					
						
							|  |  |  | 		   $(if  $(wildcard $(srcdir)/$(hdr)),, \ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:36:24 +01:00
										 |  |  | 			$(if $(wildcard $(oldsrcdir)/$(hdr)), \ | 
					
						
							|  |  |  | 				$(wildcard $(oldsrcdir)/$(hdr)), \ | 
					
						
							|  |  |  | 				$(error Missing UAPI file $(srcdir)/$(hdr))) \ | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  | 		   )) | 
					
						
							|  |  |  | input-files2-name := $(notdir $(input-files2)) | 
					
						
							|  |  |  | input-files3  := $(foreach hdr, $(genhdr-y), \ | 
					
						
							| 
									
										
										
										
											2013-03-04 21:36:24 +01:00
										 |  |  | 		   $(if	$(wildcard $(gendir)/$(hdr)), \ | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | 			$(wildcard $(gendir)/$(hdr)), \ | 
					
						
							|  |  |  | 			$(error Missing generated UAPI file $(gendir)/$(hdr)) \ | 
					
						
							|  |  |  | 		   )) | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  | input-files3-name := $(notdir $(input-files3)) | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # Work out what needs to be removed | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | oldheaders    := $(patsubst $(installdir)/%,%,$(wildcard $(installdir)/*.h)) | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | unwanted      := $(filter-out $(all-files),$(oldheaders)) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # Prefix unwanted with full paths to $(INSTALL_HDR_PATH) | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  | unwanted-file := $(addprefix $(installdir)/, $(unwanted)) | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) | 
					
						
							| 
									
										
										
										
											2006-06-18 12:02:10 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ | 
					
						
							|  |  |  |                             file$(if $(word 2, $(all-files)),s)) | 
					
						
							| 
									
										
										
										
											2008-06-16 21:29:38 +02:00
										 |  |  |       cmd_install = \ | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  |         $(CONFIG_SHELL) $< $(installdir) $(srcdir) $(input-files1-name); \ | 
					
						
							|  |  |  |         $(CONFIG_SHELL) $< $(installdir) $(oldsrcdir) $(input-files2-name); \ | 
					
						
							|  |  |  |         $(CONFIG_SHELL) $< $(installdir) $(gendir) $(input-files3-name); \ | 
					
						
							| 
									
										
										
										
											2011-04-27 22:29:49 +02:00
										 |  |  |         for F in $(wrapper-files); do                                   \ | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  |                 echo "\#include <asm-generic/$$F>" > $(installdir)/$$F;    \ | 
					
						
							| 
									
										
										
										
											2011-04-27 22:29:49 +02:00
										 |  |  |         done;                                                           \ | 
					
						
							| 
									
										
										
										
											2008-06-16 21:29:38 +02:00
										 |  |  |         touch $@ | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | quiet_cmd_remove = REMOVE  $(unwanted) | 
					
						
							|  |  |  |       cmd_remove = rm -f $(unwanted-file) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | quiet_cmd_check = CHECK   $(printdir) ($(words $(all-files)) files) | 
					
						
							| 
									
										
										
										
											2009-06-05 16:11:09 +04:00
										 |  |  | # Headers list can be pretty long, xargs helps to avoid | 
					
						
							|  |  |  | # the "Argument list too long" error. | 
					
						
							|  |  |  |       cmd_check = for f in $(all-files); do                          \ | 
					
						
							| 
									
										
										
										
											2012-10-02 18:01:57 +01:00
										 |  |  |                   echo "$(installdir)/$${f}"; done                      \ | 
					
						
							| 
									
										
										
										
											2009-06-05 16:11:09 +04:00
										 |  |  |                   | xargs                                            \ | 
					
						
							|  |  |  |                   $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH); \ | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | 	          touch $@ | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | PHONY += __headersinst __headerscheck | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | ifndef HDRCHECK | 
					
						
							|  |  |  | # Rules for installing headers | 
					
						
							|  |  |  | __headersinst: $(subdirs) $(install-file) | 
					
						
							|  |  |  | 	@: | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | targets += $(install-file) | 
					
						
							| 
									
										
										
										
											2013-04-29 14:15:51 +02:00
										 |  |  | $(install-file): scripts/headers_install.sh $(input-files1) $(input-files2) $(input-files3) FORCE | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | 	$(if $(unwanted),$(call cmd,remove),) | 
					
						
							|  |  |  | 	$(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@))) | 
					
						
							|  |  |  | 	$(call if_changed,install) | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-18 12:02:10 +01:00
										 |  |  | else | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | __headerscheck: $(subdirs) $(check-file) | 
					
						
							|  |  |  | 	@: | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | targets += $(check-file) | 
					
						
							|  |  |  | $(check-file): scripts/headers_check.pl $(output-files) FORCE | 
					
						
							|  |  |  | 	$(call if_changed,check) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | endif | 
					
						
							| 
									
										
										
										
											2006-09-24 22:15:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | # Recursion | 
					
						
							|  |  |  | hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj | 
					
						
							|  |  |  | .PHONY: $(subdirs) | 
					
						
							|  |  |  | $(subdirs): | 
					
						
							|  |  |  | 	$(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@ | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | targets := $(wildcard $(sort $(targets))) | 
					
						
							|  |  |  | cmd_files := $(wildcard \ | 
					
						
							|  |  |  |              $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) | 
					
						
							| 
									
										
										
										
											2008-06-05 16:52:15 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | ifneq ($(cmd_files),) | 
					
						
							|  |  |  | 	include $(cmd_files) | 
					
						
							| 
									
										
										
										
											2006-06-18 11:58:39 +01:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-15 21:41:09 +02:00
										 |  |  | .PHONY: $(PHONY) | 
					
						
							|  |  |  | PHONY += FORCE | 
					
						
							|  |  |  | FORCE: ; |