| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 1 | # ========================================================================== | 
|  | 2 | # Installing headers | 
|  | 3 | # | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 4 | # header-y  - list files to be installed. They are preprocessed | 
|  | 5 | #             to remove __KERNEL__ section of the file | 
|  | 6 | # unifdef-y - Same as header-y. Obsolete | 
|  | 7 | # objhdr-y  - Same as header-y but for generated files | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 8 | # | 
|  | 9 | # ========================================================================== | 
|  | 10 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 11 | # called may set destination dir (when installing to asm/) | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 12 | _dst := $(if $(dst),$(dst),$(obj)) | 
|  | 13 |  | 
| Sam Ravnborg | 283039f | 2008-06-05 19:19:47 +0200 | [diff] [blame] | 14 | kbuild-file := $(srctree)/$(obj)/Kbuild | 
|  | 15 | include $(kbuild-file) | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 16 |  | 
| Sam Ravnborg | 283039f | 2008-06-05 19:19:47 +0200 | [diff] [blame] | 17 | include scripts/Kbuild.include | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 18 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 19 | install       := $(INSTALL_HDR_PATH)/$(_dst) | 
| Sam Ravnborg | 62284a3 | 2008-06-07 13:18:26 +0200 | [diff] [blame] | 20 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 21 | header-y      := $(sort $(header-y) $(unifdef-y)) | 
|  | 22 | subdirs       := $(patsubst %/,%,$(filter %/, $(header-y))) | 
|  | 23 | header-y      := $(filter-out %/, $(header-y)) | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 24 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 25 | # files used to track state of install/check | 
|  | 26 | install-file  := $(install)/.install | 
|  | 27 | check-file    := $(install)/.check | 
|  | 28 |  | 
|  | 29 | # all headers files for this dir | 
|  | 30 | all-files     := $(header-y) $(objhdr-y) | 
|  | 31 | input-files   := $(addprefix $(srctree)/$(obj)/,$(header-y)) \ | 
|  | 32 | $(addprefix $(objtree)/$(obj)/,$(objhdr-y)) | 
|  | 33 | output-files  := $(addprefix $(install)/, $(all-files)) | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 34 |  | 
|  | 35 | # Work out what needs to be removed | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 36 | oldheaders    := $(patsubst $(install)/%,%,$(wildcard $(install)/*.h)) | 
|  | 37 | unwanted      := $(filter-out $(all-files),$(oldheaders)) | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 38 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 39 | # Prefix unwanted with full paths to $(INSTALL_HDR_PATH) | 
|  | 40 | unwanted-file := $(addprefix $(install)/, $(unwanted)) | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 41 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 42 | printdir = $(patsubst $(INSTALL_HDR_PATH)/%/,%,$(dir $@)) | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 43 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 44 | quiet_cmd_install = INSTALL $(printdir) ($(words $(all-files))\ | 
|  | 45 | file$(if $(word 2, $(all-files)),s)) | 
| Sam Ravnborg | db1bec4 | 2008-06-16 21:29:38 +0200 | [diff] [blame] | 46 | cmd_install = \ | 
|  | 47 | $(PERL) $< $(srctree)/$(obj) $(install) $(SRCARCH) $(header-y); \ | 
|  | 48 | $(PERL) $< $(objtree)/$(obj) $(install) $(SRCARCH) $(objhdr-y); \ | 
|  | 49 | touch $@ | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 50 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 51 | quiet_cmd_remove = REMOVE  $(unwanted) | 
|  | 52 | cmd_remove = rm -f $(unwanted-file) | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 53 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 54 | quiet_cmd_check = CHECK   $(printdir) ($(words $(all-files)) files) | 
|  | 55 | cmd_check = $(PERL) $< $(INSTALL_HDR_PATH)/include $(SRCARCH) \ | 
|  | 56 | $(addprefix $(install)/, $(all-files));           \ | 
|  | 57 | touch $@ | 
| David Woodhouse | 6847535 | 2006-06-18 12:02:10 +0100 | [diff] [blame] | 58 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 59 | PHONY += __headersinst __headerscheck | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 60 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 61 | ifndef HDRCHECK | 
|  | 62 | # Rules for installing headers | 
|  | 63 | __headersinst: $(subdirs) $(install-file) | 
|  | 64 | @: | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 65 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 66 | targets += $(install-file) | 
|  | 67 | $(install-file): scripts/headers_install.pl $(input-files) FORCE | 
|  | 68 | $(if $(unwanted),$(call cmd,remove),) | 
|  | 69 | $(if $(wildcard $(dir $@)),,$(shell mkdir -p $(dir $@))) | 
|  | 70 | $(call if_changed,install) | 
| David Woodhouse | de78912 | 2006-09-24 22:15:14 +0100 | [diff] [blame] | 71 |  | 
| David Woodhouse | 6847535 | 2006-06-18 12:02:10 +0100 | [diff] [blame] | 72 | else | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 73 | __headerscheck: $(subdirs) $(check-file) | 
|  | 74 | @: | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 75 |  | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 76 | targets += $(check-file) | 
|  | 77 | $(check-file): scripts/headers_check.pl $(output-files) FORCE | 
|  | 78 | $(call if_changed,check) | 
| Sam Ravnborg | 4e420aa | 2008-06-05 16:52:15 +0200 | [diff] [blame] | 79 |  | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 80 | endif | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 81 |  | 
| David Woodhouse | 8d730cf | 2006-06-18 11:58:39 +0100 | [diff] [blame] | 82 | # Recursion | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 83 | hdr-inst := -rR -f $(srctree)/scripts/Makefile.headersinst obj | 
|  | 84 | .PHONY: $(subdirs) | 
|  | 85 | $(subdirs): | 
| Sam Ravnborg | 62284a3 | 2008-06-07 13:18:26 +0200 | [diff] [blame] | 86 | $(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@ | 
| Sam Ravnborg | 7712401 | 2008-06-15 21:41:09 +0200 | [diff] [blame] | 87 |  | 
|  | 88 | targets := $(wildcard $(sort $(targets))) | 
|  | 89 | cmd_files := $(wildcard \ | 
|  | 90 | $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) | 
|  | 91 |  | 
|  | 92 | ifneq ($(cmd_files),) | 
|  | 93 | include $(cmd_files) | 
|  | 94 | endif | 
|  | 95 |  | 
|  | 96 | .PHONY: $(PHONY) | 
|  | 97 | PHONY += FORCE | 
|  | 98 | FORCE: ; |