site.lyte.dev/content/blog/why-you-should-use-makefile...

17 lines
519 B
Markdown
Raw Normal View History

2020-09-17 13:35:38 -05:00
---
description: ""
title: Why You Should Use make and Makefiles
draft: true
---
**TL;DR**: Makefiles serve as a centralized and self-documenting source of
commonly run commands associated with a project that are version-controlled and
accessible by any team-member. If you've ever come back to a project after
a long time and forgotten what all is necessary in order to spin up
a development environment or which incantation is needed to get this particular
project to compile, you need a Makefile.
# Introduction