diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-03-13 03:13:55 +0300 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2016-04-20 11:27:20 +0300 |
commit | 2e8d696b79e9c68d3005a9b09a8c72625d141ea6 (patch) | |
tree | 1eac61253aac676e858f9d586e05e456b8ba2015 /arch/x86/entry | |
parent | 4deaaa4deb0f9c42452711aa0a4b9c27016ca2f0 (diff) | |
download | linux-2e8d696b79e9c68d3005a9b09a8c72625d141ea6.tar.xz |
kbuild: drop FORCE from PHONY targets
These targets are marked as PHONY. No need to add FORCE to their
dependency.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'arch/x86/entry')
-rw-r--r-- | arch/x86/entry/vdso/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/entry/vdso/Makefile b/arch/x86/entry/vdso/Makefile index 6874da5f67fc..253b72eaade6 100644 --- a/arch/x86/entry/vdso/Makefile +++ b/arch/x86/entry/vdso/Makefile @@ -193,10 +193,10 @@ vdso_img_insttargets := $(vdso_img_sodbg:%.dbg=install_%) $(MODLIB)/vdso: FORCE @mkdir -p $(MODLIB)/vdso -$(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso FORCE +$(vdso_img_insttargets): install_%: $(obj)/%.dbg $(MODLIB)/vdso $(call cmd,vdso_install) PHONY += vdso_install $(vdso_img_insttargets) -vdso_install: $(vdso_img_insttargets) FORCE +vdso_install: $(vdso_img_insttargets) clean-files := vdso32.so vdso32.so.dbg vdso64* vdso-image-*.c vdsox32.so* |