% cat Makefile
.PHONY: a
a: b; :
% touch b; touch a; make --debug=w
Makefile:2: update target 'a' due to: b
:

Of course, make should remake a, but not due to b but because it's phony.

Reply via email to