xref: /linux/scripts/Makefile.vdsoinst (revision e2683c8868d03382da7e1ce8453b543a043066d1)
1# SPDX-License-Identifier: GPL-2.0-only
2# ==========================================================================
3# Install unstripped copies of vDSO
4# ==========================================================================
5
6PHONY := __default
7__default:
8	@:
9
10include $(srctree)/scripts/Kbuild.include
11
12install-dir := $(MODLIB)/vdso
13
14define gen_install_rules
15
16dest := $(install-dir)/$$(patsubst %.dbg,%,$$(notdir $(1)))
17
18__default: $$(dest)
19$$(dest): $(1) FORCE
20	$$(call cmd,install)
21
22build-id-file := $$(shell $(READELF) -n $(1) 2>/dev/null | sed -n 's@^.*Build ID: \(..\)\(.*\)@\1/\2@p')
23
24ifneq ($$(build-id-file),)
25link := $(install-dir)/.build-id/$$(build-id-file).debug
26
27__default: $$(link)
28$$(link): $$(dest) FORCE
29	$$(call cmd,symlink)
30endif
31
32endef
33
34$(foreach x, $(sort $(INSTALL_FILES)), $(eval $(call gen_install_rules,$(x))))
35
36quiet_cmd_install = INSTALL $@
37      cmd_install = mkdir -p $(dir $@); cp $< $@
38
39quiet_cmd_symlink = SYMLINK $@
40      cmd_symlink = mkdir -p $(dir $@); ln -sf --relative $< $@
41
42PHONY += FORCE
43FORCE:
44
45.PHONY: $(PHONY)
46