If you’ve ever looked at a Makefile
in a python or R repository chances are that it contained a collection of useful shell commands (make test
-> runs all the unit tests, make lint
-> runs automatic formatting and linting, etc.). That’s a perfectly good use of make
, and if that’s what you’re after then here’s a good guide for how to set that up. However, the original reason why make
was made was to run shell commands, which might …