In a makefile, what is the difference between
python:
exec python
and
python:
python
I found it here. I understand that exec
replaces the shell with the command being executed, in this case python. But I don't really see the implications in a makefile.
So why would i use exec python
rather than python
?