|
|
|
Ask HN: Use of Make outside of software build automation?
|
|
5 points
by lildata
1825 days ago
|
|
I recently rediscovered the joy & simplicity of make. I also started using it to sort & automate a lot of various daily tasks (adding todos, sending notifications, cleaning files, updates, backups, etc.)
Do you also leverage make for those types of use cases? or found better tools to do this? |
|
Any time you have a task with lots of smaller steps that takes several minutes or more to complete from end to end, getting built-in parallelization (-j), error handling, and resuming efficiently from a partially complete state for free with make becomes worthwhile.