help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Order only dependency for phony targets


From: Krzysztof Cieniuch
Subject: Order only dependency for phony targets
Date: Wed, 02 Feb 2011 10:24:56 +0000
User-agent: Thunderbird 2.0.0.24 (X11/20101213)

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]