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