I have a Makefile that says:
aaa:bbb
echo 456
bbb:
echo 123
aaa:bbb
echo 456
bbb:
echo 123
When there is no bbb file in the directory,
these these two rules will execute
regardless regardless of whether there is an aaa file or not.
But why?