kbuild: drop redundant "PHONY += FORCE"

"PHONY += FORCE" is already cared by scripts/Makefile.build,
which these files are included from.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
This commit is contained in:
Masahiro Yamada 2016-04-08 11:16:10 +09:00 committed by Michal Marek
parent be1fb0e8eb
commit 1c44b28dfe
3 changed files with 3 additions and 3 deletions

View File

@ -25,4 +25,4 @@ $(obj)/kernel.o: arch/arm/boot/zImage FORCE
$(obj)/initrd.o: $(INITRD) FORCE
PHONY += $(INITRD) FORCE
PHONY += $(INITRD)

View File

@ -96,7 +96,7 @@ define archhelp
endef
archprepare: make_nr_irqs_h
PHONY += make_nr_irqs_h FORCE
PHONY += make_nr_irqs_h
make_nr_irqs_h:
$(Q)$(MAKE) $(build)=arch/ia64/kernel include/generated/nr-irqs.h

View File

@ -31,7 +31,7 @@ $(obj)/uImage: $(obj)/zImage FORCE
$(call if_changed,uimage)
@echo ' Image $@ is ready'
PHONY += initrd FORCE
PHONY += initrd
initrd:
@test "$(INITRD)" != "" || \
(echo You must specify INITRD; exit -1)