Do you use often use a sequence of commands to do a repetitive task? Wouldn’t it be nice if you can call all those commands using only one short command? That is when Makefile comes in handy.
In the code above, I use Makefile to organize and automate the workflow to set up an environment. After creating the Makefile, I only need to run make install_all
to run a series of commands.
I used Makefile to simplify the setup of my customer_segmentation project.
You can learn more about Makefile here.