aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/vdso/Makefile22
1 files changed, 11 insertions, 11 deletions
diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile
index ba6fc2757ee4..3c0809a0631f 100644
--- a/arch/x86/vdso/Makefile
+++ b/arch/x86/vdso/Makefile
@@ -9,11 +9,6 @@ VDSOX32-$(CONFIG_X86_X32_ABI) := y
9VDSO32-$(CONFIG_X86_32) := y 9VDSO32-$(CONFIG_X86_32) := y
10VDSO32-$(CONFIG_COMPAT) := y 10VDSO32-$(CONFIG_COMPAT) := y
11 11
12vdso-install-$(VDSO64-y) += vdso.so
13vdso-install-$(VDSOX32-y) += vdsox32.so
14vdso-install-$(VDSO32-y) += $(vdso32-images)
15
16
17# files to link into the vdso 12# files to link into the vdso
18vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o vdso-fakesections.o 13vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o vdso-fakesections.o
19vobjs-nox32 := vdso-fakesections.o 14vobjs-nox32 := vdso-fakesections.o
@@ -178,15 +173,20 @@ VDSO_LDFLAGS = -fPIC -shared $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) \
178GCOV_PROFILE := n 173GCOV_PROFILE := n
179 174
180# 175#
181# Install the unstripped copy of vdso*.so listed in $(vdso-install-y). 176# Install the unstripped copies of vdso*.so.
182# 177#
183quiet_cmd_vdso_install = INSTALL $@ 178quiet_cmd_vdso_install = INSTALL $(@:install_%=%)
184 cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@ 179 cmd_vdso_install = cp $< $(MODLIB)/vdso/$(@:install_%=%)
185$(vdso-install-y): %.so: $(obj)/%.so.dbg FORCE 180
181vdso_img_insttargets := $(vdso_img_sodbg:%.dbg=install_%)
182
183$(MODLIB)/vdso: FORCE
186 @mkdir -p $(MODLIB)/vdso 184 @mkdir -p $(MODLIB)/vdso
185
186$(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso FORCE
187 $(call cmd,vdso_install) 187 $(call cmd,vdso_install)
188 188
189PHONY += vdso_install $(vdso-install-y) 189PHONY += vdso_install $(vdso_img_insttargets)
190vdso_install: $(vdso-install-y) 190vdso_install: $(vdso_img_insttargets) FORCE
191 191
192clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80* 192clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80*