Re: [PATCH] powerpc/Makefile: Mark phony targets as PHONY

2020-02-18 Thread Masahiro Yamada
On Tue, Feb 18, 2020 at 8:19 PM Michael Ellerman wrote: > > Some of our phony targets are not marked as such. This can lead to > confusing errors, eg: > > $ make clean > $ touch install > $ make install > make: 'install' is up to date. > $ > > Fix it by adding them to the PHONY variable

[PATCH] powerpc/Makefile: Mark phony targets as PHONY

2020-02-18 Thread Michael Ellerman
Some of our phony targets are not marked as such. This can lead to confusing errors, eg: $ make clean $ touch install $ make install make: 'install' is up to date. $ Fix it by adding them to the PHONY variable which is marked phony in the top-level Makefile. In