Good day,

Consider the following makefile:

foo : bar.o

bar.o : bar.cpp
        g++ -c -o $@ $<

Here I don't have a command for 'foo'. 'foo' is not declared
phony. However make 'imagines' that this target is somehow
gets updated. Obviously there is no way 'foo' can be created
(side-effects aside for a moment) so effectively 'foo' becomes 
an implicit phony target. My question is when this logic can be 
useful?


thanks,
-boris

Attachment: signature.asc
Description: Digital signature

_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to