summaryrefslogtreecommitdiff
path: root/scripts/Makefile.headersinst
blob: 708fbd08a2c51d9321ac251605589c1e7a877005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# SPDX-License-Identifier: GPL-2.0
# ==========================================================================
# Installing headers
#
# All headers under include/uapi, include/generated/uapi,
# arch/<arch>/include/uapi and arch/<arch>/include/generated/uapi are
# exported.
# They are preprocessed to remove __KERNEL__ section of the file.
#
# ==========================================================================

PHONY := __headers
__headers:

include scripts/Kbuild.include

src := $(srctree)/$(obj)
gen := $(objtree)/$(subst include/,include/generated/,$(obj))
dst := usr/include

-include $(src)/Kbuild

# $(filter %/, ...) is a workaround for GNU Make <= 4.2.1, where
# $(wildcard $(src)/*/) contains not only directories but also regular files.
src-subdirs := $(patsubst $(src)/%/,%,$(filter %/, $(wildcard $(src)/*/)))
gen-subdirs := $(patsubst $(gen)/%/,%,$(filter %/, $(wildcard $(gen)/*/)))
all-subdirs := $(sort $(src-subdirs) $(gen-subdirs))

src-headers := $(if $(src-subdirs), $(shell cd $(src) && find $(src-subdirs) -name '*.h'))
src-headers := $(filter-out $(no-export-headers), $(src-headers))
gen-headers := $(if $(gen-subdirs), $(shell cd $(gen) && find $(gen-subdirs) -name '*.h'))
gen-headers := $(filter-out $(no-export-headers), $(gen-headers))

# If the same header is exported from source and generated directories,
# the former takes precedence, but this should be warned.
duplicated := $(filter $(gen-headers), $(src-headers))
$(if $(duplicated), $(warning duplicated header export: $(duplicated)))

gen-headers := $(filter-out $(duplicated), $(gen-headers))

# Add dst path prefix
all-subdirs := $(addprefix $(dst)/, $(all-subdirs))
src-headers := $(addprefix $(dst)/, $(src-headers))
gen-headers := $(addprefix $(dst)/, $(gen-headers))
all-headers := $(src-headers) $(gen-headers)

# Work out what needs to be removed
old-subdirs := $(wildcard $(all-subdirs))
old-headers := $(if $(old-subdirs),$(shell find $(old-subdirs) -name '*.h'))
unwanted    := $(filter-out $(all-headers), $(old-headers))

# Create directories
existing-dirs := $(sort $(dir $(old-headers)))
wanted-dirs   := $(sort $(dir $(all-headers)))
new-dirs      := $(filter-out $(existing-dirs), $(wanted-dirs))
$(if $(new-dirs), $(shell mkdir -p $(new-dirs)))

# Rules
quiet_cmd_install = HDRINST $@
      cmd_install = $(CONFIG_SHELL) $(srctree)/scripts/headers_install.sh $< $@

$(src-headers): $(dst)/%.h: $(src)/%.h $(srctree)/scripts/headers_install.sh FORCE
	$(call if_changed,install)

$(gen-headers): $(dst)/%.h: $(gen)/%.h $(srctree)/scripts/headers_install.sh FORCE
	$(call if_changed,install)

quiet_cmd_remove = REMOVE  $(unwanted)
      cmd_remove = rm -f $(unwanted)

__headers: $(all-headers)
ifneq ($(unwanted),)
	$(call cmd,remove)
endif
	@:

existing-headers := $(filter $(old-headers), $(all-headers))

-include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)

PHONY += FORCE
FORCE:

.PHONY: $(PHONY)
title='2021-06-15 23:39:32 -0400'>2021-06-15scsi: elx: efct: Unsolicited FC frame processing routinesJames Smart 2021-06-15scsi: elx: efct: Hardware queues processingJames Smart 2021-06-15scsi: elx: efct: Hardware I/O and SGL initializationJames Smart 2021-06-15scsi: elx: efct: RQ buffer, memory pool allocation and deallocation APIsJames Smart 2021-06-15scsi: elx: efct: Hardware queue creation and deletionJames Smart 2021-06-15scsi: elx: efct: Driver initialization routinesJames Smart 2021-06-15scsi: elx: efct: Data structures and defines for hw operationsJames Smart 2021-06-15scsi: elx: libefc: Register discovery objects with hardwareJames Smart 2021-06-15scsi: elx: libefc: Extended link Service I/O handlingJames Smart 2021-06-15scsi: elx: libefc: FC node ELS and state handlingJames Smart 2021-06-15scsi: elx: libefc: Fabric node state machine interfacesJames Smart 2021-06-15scsi: elx: libefc: Remote node state machine interfacesJames Smart 2021-06-15scsi: elx: libefc: SLI and FC PORT state machine interfacesJames Smart 2021-06-15scsi: elx: libefc: FC Domain state machine interfacesJames Smart 2021-06-15scsi: elx: libefc: Emulex FC discovery library APIs and definitionsJames Smart 2021-06-15scsi: elx: libefc: Generic state machine frameworkJames Smart 2021-06-15scsi: elx: libefc_sli: APIs to setup SLI libraryJames Smart 2021-06-15scsi: elx: libefc_sli: BMBX routines and SLI config commandsJames Smart 2021-06-15scsi: elx: libefc_sli: Populate and post different WQEsJames Smart 2021-06-15scsi: elx: libefc_sli: Queue create/destroy/parse routinesJames Smart 2021-06-15scsi: elx: libefc_sli: Data structures and defines for mbox commandsJames Smart 2021-06-15scsi: elx: libefc_sli: SLI Descriptors and Queue entriesJames Smart 2021-06-15scsi: elx: libefc_sli: SLI-4 register offsets and field definitionsJames Smart