drm/panthor: Don't add write fences to the shared BOs
[drm/drm-misc.git] / scripts / Makefile.vdsoinst
blobac85f9a4a56964d5ee2b45b8cf9f44a20c806141
1 # SPDX-License-Identifier: GPL-2.0-only
2 # ==========================================================================
3 # Install unstripped copies of vDSO
4 # ==========================================================================
6 PHONY := __default
7 __default:
8         @:
10 include $(srctree)/scripts/Kbuild.include
12 install-dir := $(MODLIB)/vdso
14 define gen_install_rules
16 dest := $(install-dir)/$$(patsubst %.dbg,%,$$(notdir $(1)))
18 __default: $$(dest)
19 $$(dest): $(1) FORCE
20         $$(call cmd,install)
22 # Some architectures create .build-id symlinks
23 ifneq ($(filter arm s390 sparc x86, $(SRCARCH)),)
24 link := $(install-dir)/.build-id/$$(shell $(READELF) -n $(1) | sed -n 's@^.*Build ID: \(..\)\(.*\)@\1/\2@p').debug
26 __default: $$(link)
27 $$(link): $$(dest) FORCE
28         $$(call cmd,symlink)
29 endif
31 endef
33 $(foreach x, $(sort $(INSTALL_FILES)), $(eval $(call gen_install_rules,$(x))))
35 quiet_cmd_install = INSTALL $@
36       cmd_install = mkdir -p $(dir $@); cp $< $@
38 quiet_cmd_symlink = SYMLINK $@
39       cmd_symlink = mkdir -p $(dir $@); ln -sf --relative $< $@
41 PHONY += FORCE
42 FORCE:
44 .PHONY: $(PHONY)