Hi,

In following makefile

.PHONY: all install
install: all
install:
   @echo doing $(@)
all:
   @echo doing $(@)

is there any difference between
install: all
and
install:  | all

I'm pretty sure that there is no difference in the outcome but maybe there is difference in make performance

Thanks
Krzysztof

_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to